Remove Element
Creates a contextual menu item to remove an element from the DOM
ما هو Remove Element؟
Remove Element هو إضافة Chrome تم تطويرها بواسطة https://weilstreet.com، والميزة الرئيسية لها هي "Creates a contextual menu item to remove an element from the DOM".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Remove Element
قم بتنزيل ملفات الامتداد Remove Element بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
Right-click anything on the page and remove it. Useful if an ad is in the way of you reading an article. If you accidentally remove too much, just refresh the page - removing items is temporary. After installation you must reload any open pages for the extension to work.
معلومات أساسية عن التمديد
الاسم | Remove Element |
ID | lnfececmldedlanmhbeljgdaofncfeho |
عنوان URL الرسمي | https://chromewebstore.google.com/detail/remove-element/lnfececmldedlanmhbeljgdaofncfeho |
الوصف | Creates a contextual menu item to remove an element from the DOM |
حجم الملف | 6.35 KB |
عدد التثبيتات | 2,523 |
النسخة الحالية | 1.0.2 |
آخر تحديث | 2018-09-05 |
تاريخ النشر | 2018-09-04 |
تقييم | 3.94/5 مجموع تقييمات 32 |
المطور | https://weilstreet.com |
نوع الدفع | free |
اللغات المدعومة | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Remove Element", "version": "1.0.2", "description": "Creates a contextual menu item to remove an element from the DOM", "manifest_version": 2, "icons": { "48": "icon48.png", "128": "icon128.png" }, "permissions": [ "contextMenus", "tabs", "http:\/\/*\/*", "https:\/\/*\/*" ], "background": { "scripts": [ "background.js" ] }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "remove.js" ] } ] } |