elementZapper

Disappear at once!

elementZapperคืออะไร?

elementZapper เป็นส่วนขยายของ Chrome ที่พัฒนาโดย http://www.dsebastien.net และคุณลักษณะหลักของมันคือ "Disappear at once!"

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

screenshot
screenshot

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

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

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

                        This extension allows you to easily remove elements from Web pages.

Let's say that a gigantic cat image is bothering you (though you find it lovely) on some Website. You want it gone? Then right click on it, select "Zap!" and there you have it, gone!

The same applies to selections that you make on pages; just select a bunch of paragraphs, images, etc, right click, select "Zap!" and they're gone.                    

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

ชื่อ elementZapper elementZapper
ID efeljanahmlnjhckmohcfbgkfdjdmnog
URL อย่างเป็นทางการ https://chrome.google.com/webstore/detail/elementzapper/efeljanahmlnjhckmohcfbgkfdjdmnog
คำอธิบาย Disappear at once!
ขนาดไฟล์ 18.52 KB
จำนวนการติดตั้ง 459
เวอร์ชันปัจจุบัน 1.1
อัปเดตครั้งล่าสุด 2013-05-13
วันที่เผยแพร่ 2013-05-13
คะแนน 2.33/5 รวมทั้งหมด 3 คะแนน
ผู้พัฒนา http://www.dsebastien.net
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย http://www.dsebastien.net
URL หน้าช่วยเหลือ https://github.com/dsebastien/elementZapper
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "elementZapper",
    "description": "Disappear at once!",
    "version": "1.1",
    "icons": {
        "128": "zap_128.png",
        "64": "zap_64.png",
        "32": "zap_32.png",
        "16": "zap_16.png"
    },
    "permissions": [
        "contextMenus",
        "tabs"
    ],
    "background": {
        "scripts": [
            "eventPage.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "contentScript.js"
            ]
        }
    ]
}