elementZapper
Disappear at once!
ما هو elementZapper؟
elementZapper هو إضافة Chrome تم تطويرها بواسطة http://www.dsebastien.net، والميزة الرئيسية لها هي "Disappear at once!".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة elementZapper
قم بتنزيل ملفات الامتداد elementZapper بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
This extension allows you to easily remove elements from Web pages. Let's say that a gigantic cat image is bothering you (though you find it lovely) on some Website. You want it gone? Then right click on it, select "Zap!" and there you have it, gone! The same applies to selections that you make on pages; just select a bunch of paragraphs, images, etc, right click, select "Zap!" and they're gone.
معلومات أساسية عن التمديد
الاسم | |
ID | efeljanahmlnjhckmohcfbgkfdjdmnog |
عنوان URL الرسمي | https://chrome.google.com/webstore/detail/elementzapper/efeljanahmlnjhckmohcfbgkfdjdmnog |
الوصف | Disappear at once! |
حجم الملف | 18.52 KB |
عدد التثبيتات | 459 |
النسخة الحالية | 1.1 |
آخر تحديث | 2013-05-13 |
تاريخ النشر | 2013-05-13 |
تقييم | 2.33/5 مجموع تقييمات 3 |
المطور | http://www.dsebastien.net |
نوع الدفع | free |
موقع الإضافة | http://www.dsebastien.net |
عنوان صفحة المساعدة | https://github.com/dsebastien/elementZapper |
اللغات المدعومة | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "elementZapper", "description": "Disappear at once!", "version": "1.1", "icons": { "128": "zap_128.png", "64": "zap_64.png", "32": "zap_32.png", "16": "zap_16.png" }, "permissions": [ "contextMenus", "tabs" ], "background": { "scripts": [ "eventPage.js" ], "persistent": false }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "contentScript.js" ] } ] } |