Sourcing Secret Chrome Extension
This extension auto-populate description text.
Vad är Sourcing Secret Chrome Extension?
Sourcing Secret Chrome Extension är en Chrome-tillägg utvecklad av http://sourcingsecret.com, och dess huvudfunktion är "This extension auto-populate description text.".
Tilläggsskärmbilder
Ladda ner Sourcing Secret Chrome Extension-förlängningens CRX-fil
Ladda ner Sourcing Secret Chrome Extension-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
Grundläggande Information om Tillägg
Namn | |
ID | indglgdhbhcmmkeflbmbiahcdkdmncac |
Officiell webbadress | https://chrome.google.com/webstore/detail/sourcing-secret-chrome-ex/indglgdhbhcmmkeflbmbiahcdkdmncac |
Beskrivning | This extension auto-populate description text. |
Filstorlek | 60.73 KB |
Antal Installationer | 187 |
Aktuell Version | 1.7 |
Senast Uppdaterad | 2018-10-12 |
Publiceringsdatum | 2018-10-12 |
Betyg | 5.00/5 Totalt 1 Betyg |
Utvecklare | http://sourcingsecret.com |
E-post | [email protected] |
Betalningssätt | free |
Stödda Språk | 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\/*" ] } |