Sourcing Secret Chrome Extension
This extension auto-populate description text.
What is Sourcing Secret Chrome Extension?
Sourcing Secret Chrome Extension is a Chrome extension developed by http://sourcingsecret.com, and its main feature is "This extension auto-populate description text.".
Extension Screenshots
Download Sourcing Secret Chrome Extension Extension CRX File
Download Sourcing Secret Chrome Extension extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
Extension Basic Information
Name | |
ID | indglgdhbhcmmkeflbmbiahcdkdmncac |
Official URL | https://chrome.google.com/webstore/detail/sourcing-secret-chrome-ex/indglgdhbhcmmkeflbmbiahcdkdmncac |
Description | This extension auto-populate description text. |
File Size | 60.73 KB |
Installation Count | 187 |
Current Version | 1.7 |
Last Updated | 2018-10-12 |
Publish Date | 2018-10-12 |
Rating | 5.00/5 Total 1 Ratings |
Developer | http://sourcingsecret.com |
[email protected] | |
Payment Type | free |
Supported Languages | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "icons": { "128": "icon_128.png" }, "name": "Sourcing Secret Chrome Extension", "short_name": "SSCE", "description": "This extension auto-populate description text.", "version": "1.7", "options_page": "options.html", "browser_action": { "default_icon": "favicon.png", "default_popup": "popup.html" }, "background": { "scripts": [ "background.js" ] }, "content_scripts": [ { "matches": [ "https:\/\/www.amazon.com\/gp\/product\/*", "https:\/\/www.amazon.com\/*\/dp\/*", "https:\/\/www.amazon.com\/dp\/*" ], "js": [ "jquery-3.3.1.min.js", "contentscript.js" ], "run_at": "document_end" } ], "permissions": [ "activeTab", "storage", "tabs", "https:\/\/app.sourcingsecret.com\/*" ] } |