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 |
| 官方網址 | 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\/*"
]
} | |