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 مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
معلومات أساسية عن التمديد
الاسم | |
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\/*" ] } |