Remove Element
Remove an HTML element from the context menu (right-click).
ما هو Remove Element؟
Remove Element هو إضافة Chrome تم تطويرها بواسطة atheimanksu، والميزة الرئيسية لها هي "Remove an HTML element from the context menu (right-click).".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Remove Element
قم بتنزيل ملفات الامتداد Remove Element بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
Remove Element allows you to remove any HTML element by right clicking the element and selecting "Remove Element" from the Chrome context menu. Extremely simple and efficient code is available at https://github.com/atheiman/remove-element
معلومات أساسية عن التمديد
الاسم | Remove Element |
ID | jmmocdecnafloeaphiidpofionaifhjo |
عنوان URL الرسمي | https://chromewebstore.google.com/detail/remove-element/jmmocdecnafloeaphiidpofionaifhjo |
الوصف | Remove an HTML element from the context menu (right-click). |
حجم الملف | 178 KB |
عدد التثبيتات | 363 |
النسخة الحالية | 1.0 |
آخر تحديث | 2015-09-03 |
تاريخ النشر | 2015-09-02 |
تقييم | 2.00/5 مجموع تقييمات 8 |
المطور | atheimanksu |
نوع الدفع | free |
اللغات المدعومة | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Remove Element", "description": "Remove an HTML element from the context menu (right-click).", "version": "1.0", "author": "Austin Heiman", "permissions": [ "contextMenus", "activeTab" ], "icons": { "16": "images\/red-x-16.png", "48": "images\/red-x-48.png", "128": "images\/red-x-128.png" }, "background": { "scripts": [ "event.js" ], "persistent": false }, "content_scripts": [ { "matches": [ "*:\/\/*\/*" ], "js": [ "content_script.js" ] } ] } |