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 กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        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"
        ]
    }
}