-
Notifications
You must be signed in to change notification settings - Fork 230
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
12 changed files
with
98 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,49 @@ | ||
{ | ||
"name": "Extension source viewer", | ||
"description": "View the source code of any Chrome or Opera extension (crx/nex). Also allows you to directly install extensions from the Chrome Web Store.", | ||
"version": "1.2.0", | ||
"manifest_version": 2, | ||
"developer": { | ||
"name": "Rob Wu", | ||
"url": "https://robwu.nl" | ||
}, | ||
"background": { | ||
"scripts": [ | ||
"incognito-events.js", | ||
"chrome-platform-info.js", | ||
"cws_pattern.js", | ||
"background.js", | ||
"bg-contextmenu.js" | ||
], | ||
"persistent": false | ||
}, | ||
"page_action": { | ||
"default_icon": { | ||
"19": "icons/19.png", | ||
"38": "icons/38.png" | ||
}, | ||
"default_title": "Inspect contents of the current Chromium extension", | ||
"default_popup": "popup.html" | ||
}, | ||
"icons": { | ||
"16": "icons/16.png", | ||
"48": "icons/48.png", | ||
"128": "icons/128.png" | ||
}, | ||
"options_page": "options.html", | ||
"permissions": [ | ||
"tabs", | ||
"webNavigation", | ||
"storage", | ||
"contextMenus", | ||
"declarativeWebRequest", | ||
"*://clients2.google.com/service/update2/crx*", | ||
"*://clients2.googleusercontent.com/crx/download/*", | ||
"*://addons.opera.com/*", | ||
"*://*/*" | ||
], | ||
"web_accessible_resources": [ | ||
"crxviewer.html" | ||
], | ||
"incognito": "split" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -23,12 +23,14 @@ | |
</style> | ||
</head> | ||
<body> | ||
<!--#if CHROME--> | ||
<label> | ||
<input type="checkbox" id="hasAccessToAllURLs"> | ||
Allow access to all URLs.<br> | ||
This option allows the extension to detect Chrome and Opera 15 extensions outside the Chrome Web store. | ||
When the download of a Chromium extension is detected, the CRX button will be shown. | ||
</label> | ||
<!--#endif--> | ||
<label> | ||
<input type="checkbox" id="contextmenu"> | ||
Add a context menu option to Chrome / Opera 15 extension links. | ||
|
@@ -37,6 +39,7 @@ | |
© 2013 Rob Wu <[email protected]> | ||
• <a href="https://github.com/Rob--W/crxviewer">Source code on Github</a> | ||
• <a href="https://chrome.google.com/webstore/detail/chrome-extension-source-v/jifpbeccnghkjeaalbbjmodiffmgedin">Chrome Web Store listing</a> | ||
• <a href="https://addons.opera.com/en/extensions/details/extension-source-viewer/">Opera addon listing</a> | ||
</footer> | ||
<script src="options.js"></script> | ||
</body> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters