Sourcing Secret Chrome Extension
This extension auto-populate description text.
Sourcing Secret Chrome Extensionคืออะไร?
Sourcing Secret Chrome Extension เป็นส่วนขยายของ Chrome ที่พัฒนาโดย http://sourcingsecret.com และคุณลักษณะหลักของมันคือ "This extension auto-populate description text."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Sourcing Secret Chrome Extension
ดาวน์โหลดไฟล์ส่วนขยาย 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\/*" ] } |