Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Are all Google Chrome extensions open source by default?

I want to know if i write a Google Chrome extension, will anyone be able to use my code?

like image 248
NYC2012 Avatar asked Apr 27 '10 20:04

NYC2012


People also ask

Is Google getting rid of Chrome extensions?

According to Google's Chromium blog, the decision to end support for Chrome Apps was due to two factors: the relatively low usage of Chrome Apps, and the development of technology making it easier to host applications entirely from the web.

Are Chrome extensions copyrighted?

Chrome extension source code can be viewed but it can still be under a copyright license. Need to ask the extension owner about the license details.

Why did Google make Chrome open-source?

By making Chromium open source, Google succeeded in turning almost all competing browsers into rebranded copies of Chrome and getting to set all the baseline behavior/policy that would go into them.


1 Answers

It looks like people will be able to see your code. If they can see your code, they can potentially use it.

  • Windows: C:\Documents and Settings\%USERNAME%\Local Settings\Application Data\Google\Chrome\User Data\Default\Extensions
  • Linux and Mac:
    • ~/Library/Application Support/Google/Chrome/Default/Extensions/ or
    • ~/.config/google-chrome/Default/Extensions/

The source code is available for inspection/debugging/experimenting & whatever people might want to do. You may try to use a JavaScript obfuscator.

like image 193
Jaime Garcia Avatar answered Sep 20 '22 13:09

Jaime Garcia