Nukem

Remove elements from web pages permanently

Nukemคืออะไร?

Nukem เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://www.zaonce.com และคุณลักษณะหลักของมันคือ "Remove elements from web pages permanently"

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Nukem

ดาวน์โหลดไฟล์ส่วนขยาย Nukem ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

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

                        There are plenty of Chrome extensions that allow you to remove elements from the page, but they all seem to be temporary. This one remembers whats been removed, and removes it whenever the page is loaded again.

Once installed, press the toolbar button to start removing elements. Press the button again to stop. The options page will then be displayed showing what you've removed. Just press Close if you don't want to make any tweaks.

Wildcards can be used to make it work on multiple pages from the same site (for example) and an optional delay can be set in case the element you want to remove doesn't get displayed right away.

Contribute: https://github.com/Gruntfuggly/nukem

Notes: 
Unfortunately, some websites generate content dynamically in a way that this extension can't cope with. Right click the toolbar icon to visit the options page. Then try adding a delay or reducing the scope (with the left arrow button) if the element doesn't get removed when the page is refreshed after saving your changes.                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Nukem Nukem
ID kpogandfndblomniegfaeakkjchmiedi
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/nukem/kpogandfndblomniegfaeakkjchmiedi
คำอธิบาย Remove elements from web pages permanently
ขนาดไฟล์ 44.5 KB
จำนวนการติดตั้ง 1,743
เวอร์ชันปัจจุบัน 0.6
อัปเดตครั้งล่าสุด 2017-01-31
วันที่เผยแพร่ 2017-01-31
คะแนน 4.04/5 รวมทั้งหมด 45 คะแนน
ผู้พัฒนา https://www.zaonce.com
ประเภทการชำระเงิน free
ภาษาที่รองรับ en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Nukem",
    "short_name": "Nukem",
    "description": "Remove elements from web pages permanently",
    "version": "0.6",
    "author": "Gruntfuggly",
    "permissions": [
        "chrome:\/\/favicon\/",
        "activeTab",
        "storage"
    ],
    "icons": {
        "16": "icons\/nukem-16.png",
        "48": "icons\/nukem-48.png",
        "128": "icons\/nukem-128.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "browser_action": {
        "default_icon": "icons\/nukem-19-disabled.png",
        "default_title": "Start nukin'...",
        "default_popup": "popup.html"
    },
    "options_page": "options.html",
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "jquery-3.1.1.slim.min.js",
                "engine.js"
            ]
        },
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "jquery-3.1.1.slim.min.js",
                "nukem.js"
            ],
            "run_at": "document_end"
        }
    ]
}