Delete Element

Adds option to context menu to quickly delete a page element

ما هو Delete Element؟

Delete Element هو إضافة Chrome تم تطويرها بواسطة lifeinweeksapp، والميزة الرئيسية لها هي "Adds option to context menu to quickly delete a page element".

تحميل ملف CRX للإضافة Delete Element

قم بتنزيل ملفات الامتداد Delete Element بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        Adds option to context menu to quickly delete a page element. 

Does NOT permanently delete the item. Use an ad-blocker for that.                    

معلومات أساسية عن التمديد

الاسم Delete Element Delete Element
ID aeafmlpmnmbckkaapajfhdmbbmdapngm
عنوان URL الرسمي https://chrome.google.com/webstore/detail/delete-element/aeafmlpmnmbckkaapajfhdmbbmdapngm
الوصف Adds option to context menu to quickly delete a page element
حجم الملف 29.11 KB
عدد التثبيتات 53
النسخة الحالية 1.0.0
آخر تحديث 2018-05-14
تاريخ النشر 2018-05-14
تقييم 3.33/5 مجموع تقييمات 3
المطور lifeinweeksapp
نوع الدفع free
اللغات المدعومة en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Delete Element",
    "description": "Adds option to context menu to quickly delete a page element",
    "version": "1.0.0",
    "manifest_version": 2,
    "permissions": [
        "contextMenus",
        "activeTab"
    ],
    "background": {
        "scripts": [
            "script.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "icons": {
        "128": "icon.png"
    },
    "options_ui": {
        "page": "options.html",
        "chrome_style": true
    }
}