Simple Remove Element
Adds a context menu to remove an element from a page
ما هو Simple Remove Element؟
Simple Remove Element هو إضافة Chrome تم تطويرها بواسطة elfakyn، والميزة الرئيسية لها هي "Adds a context menu to remove an element from a page".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Simple Remove Element
قم بتنزيل ملفات الامتداد Simple Remove Element بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
Adds a right-click menu item to remove an element from a page. Right click on an item, select "Remove element", and the element is gone. Extensions that can read data on all websites are scary. This extension is: Open-source Secure Efficient Auditable As simple as can be Designed with minimal permissions (still needs access to the active tab) Submit an issue in the GitHub page if you encounter any issues: https://github.com/elfakyn/simple-remove-element
معلومات أساسية عن التمديد
الاسم | Simple Remove Element |
ID | mlfckaclcmmggacnimimmeepailfhokj |
عنوان URL الرسمي | https://chromewebstore.google.com/detail/simple-remove-element/mlfckaclcmmggacnimimmeepailfhokj |
الوصف | Adds a context menu to remove an element from a page |
حجم الملف | 6.53 KB |
عدد التثبيتات | 21 |
النسخة الحالية | 1.0.4 |
آخر تحديث | 2019-11-08 |
تاريخ النشر | 2019-11-05 |
المطور | elfakyn |
البريد الإلكتروني | [email protected] |
نوع الدفع | free |
اللغات المدعومة | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Simple Remove Element", "short_name": "Remove Element", "version": "1.0.4", "description": "Adds a context menu to remove an element from a page", "manifest_version": 2, "icons": { "48": "remove_48.png", "128": "remove_128.png" }, "background": { "scripts": [ "background.js" ], "persistent": false }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "remove_element.js" ], "run_at": "document_idle" } ], "permissions": [ "contextMenus", "activeTab" ], "content_security_policy": "script-src 'self'; object-src 'none'; default-src 'none'" } |