Deletion Prank
Delete any element that is clicked
ما هو Deletion Prank؟
Deletion Prank هو إضافة Chrome تم تطويرها بواسطة skeys apps، والميزة الرئيسية لها هي "Delete any element that is clicked".
تحميل ملف CRX للإضافة Deletion Prank
قم بتنزيل ملفات الامتداد Deletion Prank بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
This extension can be enabled and disabled at will within the page, unlike my other extensions. Basically, when the extension is active, any element clicked on the page will be instantaneously deleted before the browser can even activate it. This applies to text, links, and more!
معلومات أساسية عن التمديد
الاسم | |
ID | fbepklogcpfkgbfcoinahppdebnahdja |
عنوان URL الرسمي | https://chrome.google.com/webstore/detail/deletion-prank/fbepklogcpfkgbfcoinahppdebnahdja |
الوصف | Delete any element that is clicked |
حجم الملف | 60.54 KB |
عدد التثبيتات | 2,000 |
النسخة الحالية | 0.0.3 |
آخر تحديث | 2016-02-01 |
تاريخ النشر | 2016-02-01 |
تقييم | 3.67/5 مجموع تقييمات 6 |
المطور | skeys apps |
نوع الدفع | free |
اللغات المدعومة | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Deletion Prank", "short_name": "Deletion Prank", "description": "Delete any element that is clicked", "version": "0.0.3", "browser_action": { "default_image": "asets\/enabled_256.png" }, "web_accessible_resources": [ "assets\/*" ], "icons": { "256": "assets\/enabled_256.png" }, "background": { "scripts": [ "iconcontroller.js" ] }, "content_scripts": [ { "run_at": "document_idle", "js": [ "background.js" ], "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ] } ], "permissions": [ "storage" ] } |