Nuke anything reloaded

Allows you to hide almost anything via context menu.

ما هو Nuke anything reloaded؟

Nuke anything reloaded هو إضافة Chrome تم تطويرها بواسطة redgizmo75، والميزة الرئيسية لها هي "Allows you to hide almost anything via context menu.".

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

screenshot
screenshot

تحميل ملف CRX للإضافة Nuke anything reloaded

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

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

                        Allows you to hide almost any object on a web page. Just right click on the object you want to disappear and chose 'Remove this object' from context menu. You can remove as many objects as you want and you can restore the objects again. Removal is only temporary, if you reload the page everything is as it was. Nothing is stored by this extension.

This extension is inspired by 'Nuke anyhting (enhanced)' addon for FF.

SourceCode can be found on GitHub:

https://github.com/redgizmo75/nuke_anything_reloaded                    

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

الاسم Nuke anything reloaded Nuke anything reloaded
ID pfmoigombklcdimgnlmhmohjdihgdmdc
عنوان URL الرسمي https://chromewebstore.google.com/detail/nuke-anything-reloaded/pfmoigombklcdimgnlmhmohjdihgdmdc
الوصف Allows you to hide almost anything via context menu.
حجم الملف 34.68 KB
عدد التثبيتات 495
النسخة الحالية 1.0
آخر تحديث 2017-09-16
تاريخ النشر 2017-09-16
تقييم 2.60/5 مجموع تقييمات 5
المطور redgizmo75
البريد الإلكتروني [email protected]
نوع الدفع free
اللغات المدعومة de,en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "__MSG_appName__",
    "description": "__MSG_appDesc__",
    "version": "1.0",
    "default_locale": "en",
    "permissions": [
        "contextMenus"
    ],
    "icons": {
        "16": "icon_nuke_16.png",
        "128": "icon_nuke_128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*",
                "file:\/\/\/*\/*"
            ],
            "js": [
                "content_script.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    }
}