Remove Element

This extension will remove any element

ما هو Remove Element؟

Remove Element هو إضافة Chrome تم تطويرها بواسطة mnetzer، والميزة الرئيسية لها هي "This extension will remove any element".

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

screenshot
screenshot
screenshot
screenshot
screenshot

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

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

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

                        Have you ever wanted to blast any element on the page? This will do it. 100% Guaranteed to remove any element with a simple right click -> Remove Element. This works on iframes as well which basically means you can even get rid of elements inside video frames such as youtube vimeo and twitch! 

Also, this is open-source! So if you want to see how this was created check this out:
https://github.com/moishinetzer/remove-element                    

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

الاسم Remove Element Remove Element
ID nmndcjhenmoghainokenbpgakopbplpk
عنوان URL الرسمي https://chromewebstore.google.com/detail/remove-element/nmndcjhenmoghainokenbpgakopbplpk
الوصف This extension will remove any element
حجم الملف 150 KB
عدد التثبيتات 81
النسخة الحالية 1.0
آخر تحديث 2021-02-02
تاريخ النشر 2021-02-02
المطور mnetzer
البريد الإلكتروني [email protected]
نوع الدفع free
موقع الإضافة https://github.com/moishinetzer/remove-element
اللغات المدعومة en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Remove Element",
    "description": "This extension will remove any element",
    "version": "1.0",
    "icons": {
        "16": "icon.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "web_accessible_resources": [
        "script.js",
        "background.js"
    ],
    "permissions": [
        "contextMenus"
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "all_frames": true,
            "js": [
                "script.js"
            ],
            "match_about_blank": true,
            "run_at": "document_idle"
        }
    ]
}