RemoveElement

Remove HTML elements from the right-click context menu

ما هو RemoveElement؟

RemoveElement هو إضافة Chrome تم تطويرها بواسطة sa1hon، والميزة الرئيسية لها هي "Remove HTML elements from the right-click context menu".

لقطات شاشة التمديد

screenshot

تحميل ملف CRX للإضافة RemoveElement

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

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

                        More easily remove elements without opening developer tools.

Right-click over the HTML element you want to delete.
You can view the tag name and size in the context menu.
And all you have to do is click it.                    

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

الاسم RemoveElement RemoveElement
ID jjhnenbbbbgojdbealmpdkmbkbnmeimf
عنوان URL الرسمي https://chromewebstore.google.com/detail/removeelement/jjhnenbbbbgojdbealmpdkmbkbnmeimf
الوصف Remove HTML elements from the right-click context menu
حجم الملف 11.65 KB
عدد التثبيتات 94
النسخة الحالية 0.0.6
آخر تحديث 2023-03-02
تاريخ النشر 2019-12-29
المطور sa1hon
البريد الإلكتروني [email protected]
نوع الدفع free
موقع الإضافة https://github.com/saihon/remove-element
اللغات المدعومة en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "RemoveElement",
    "version": "0.0.6",
    "description": "Remove HTML elements from the right-click context menu",
    "icons": {
        "128": "icons\/icon-128.png",
        "48": "icons\/icon-48.png",
        "19": "icons\/icon-19.png",
        "16": "icons\/icon-16.png"
    },
    "permissions": [
        "contextMenus"
    ],
    "background": {
        "scripts": [
            "js\/background.js"
        ],
        "persistent": true
    },
    "content_scripts": [
        {
            "all_frames": true,
            "run_at": "document_end",
            "matches": [
                ""
            ],
            "js": [
                "js\/removeElement.js"
            ]
        }
    ],
    "manifest_version": 2
}