Sourcing Secret Chrome Extension
This extension auto-populate description text.
什么是Sourcing Secret Chrome Extension?
Sourcing Secret Chrome Extension是由http://sourcingsecret.com开发的Chrome扩展程序,该扩展的主要功能是“This extension auto-populate description text.”。
扩展截图
下载Sourcing Secret Chrome Extension扩展crx文件
下载Sourcing Secret Chrome Extension扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
扩展基本信息
名称 | |
ID | indglgdhbhcmmkeflbmbiahcdkdmncac |
官方URL | https://chrome.google.com/webstore/detail/sourcing-secret-chrome-ex/indglgdhbhcmmkeflbmbiahcdkdmncac |
简介 | This extension auto-populate description text. |
文件大小 | 60.73 KB |
安装次数 | 187 |
当前版本 | 1.7 |
更新时间 | 2018-10-12 |
上架时间 | 2018-10-12 |
评分 | 5.00/5 共1次评分 |
开发者 | http://sourcingsecret.com |
电子邮箱 | [email protected] |
付费类型 | free |
支持的语言 | 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\/*" ] } |