Destroy It!
Toggle the ability to destroy any ads or annoying elements of a webpage.
ما هو Destroy It!؟
Destroy It! هو إضافة Chrome تم تطويرها بواسطة thejackcohen، والميزة الرئيسية لها هي "Toggle the ability to destroy any ads or annoying elements of a webpage.".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Destroy It!
قم بتنزيل ملفات الامتداد Destroy It! بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
معلومات أساسية عن التمديد
الاسم | |
ID | ijikkmpakihdnnccdjpcbfomojdfbjhj |
عنوان URL الرسمي | https://chrome.google.com/webstore/detail/destroy-it/ijikkmpakihdnnccdjpcbfomojdfbjhj |
الوصف | Toggle the ability to destroy any ads or annoying elements of a webpage. |
حجم الملف | 80.51 KB |
عدد التثبيتات | 4,851 |
النسخة الحالية | 1.0 |
آخر تحديث | 2015-12-27 |
تاريخ النشر | 2015-12-27 |
تقييم | 2.26/5 مجموع تقييمات 19 |
المطور | thejackcohen |
نوع الدفع | free |
اللغات المدعومة | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Destroy It!", "short_name": "Destroy It!", "description": "Toggle the ability to destroy any ads or annoying elements of a webpage.", "version": "1.0", "icons": { "16": "images\/icon16.png", "48": "images\/icon48.png", "128": "images\/icon128.png", "256": "images\/icon256.png" }, "browser_action": { "default_icon": "images\/icon128.png", "default_popup": "src\/popup.html", "default_title": "Destroy It!" }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "src\/destroy.js" ], "run_at": "document_end" } ], "permissions": [ "activeTab", "http:\/\/*\/*", "https:\/\/*\/*" ] } |