DOM Destroyer
Delete anything on a website with a click.
ما هو DOM Destroyer؟
DOM Destroyer هو إضافة Chrome تم تطويرها بواسطة Phil Schleihauf، والميزة الرئيسية لها هي "Delete anything on a website with a click.".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة DOM Destroyer
قم بتنزيل ملفات الامتداد DOM Destroyer بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
DOM Destroyer empowers you to remove anything that annoys you from a web page by just clicking on it. Get rid of newsletter popups, content-hiding overlays, and all kinds of other noisy clutter!
Note that this extension only temporarily hides elements from your view -- to get them back, just refresh the page. معلومات أساسية عن التمديد
| الاسم | |
| ID | cgkjfaoibdibeghgeplabcbineebklgf |
| عنوان URL الرسمي | https://chromewebstore.google.com/detail/dom-destroyer/cgkjfaoibdibeghgeplabcbineebklgf |
| الوصف | Delete anything on a website with a click. |
| حجم الملف | 12.62 KB |
| عدد التثبيتات | 2,836 |
| النسخة الحالية | 0.3 |
| آخر تحديث | 2021-03-29 |
| تاريخ النشر | 2014-02-25 |
| تقييم | 3.76/5 مجموع تقييمات 17 |
| المطور | Phil Schleihauf |
| البريد الإلكتروني | [email protected] |
| نوع الدفع | free |
| موقع الإضافة | http://github.com/uniphil/dom-destroyer |
| عنوان صفحة المساعدة | http://github.com/uniphil/dom-destroyer/issues |
| اللغات المدعومة | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "DOM Destroyer",
"description": "Delete anything on a website with a click.",
"version": "0.3",
"browser_action": {
"default_title": "Destroy DOM",
"default_icon": "destroy_128.png"
},
"permissions": [
"activeTab"
],
"background": {
"scripts": [
"background.js"
]
},
"commands": {
"toggle-armed": {
"suggested_key": {
"default": "Ctrl+Shift+L"
},
"description": "Toggle DOM destruction mode"
}
},
"homepage_url": "http:\/\/github.com\/uniphil\/dom-destroyer"
} | |