removeanything

sometimes you just want to get rid of an element quickly

removeanythingคืออะไร?

removeanything เป็นส่วนขยายของ Chrome ที่พัฒนาโดย zeyus และคุณลักษณะหลักของมันคือ "sometimes you just want to get rid of an element quickly"

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

screenshot

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

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

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

                        This is a really simple extension to remove any element from a page by right clicking.

This is useful if you want to hid an image, or an ad form an article, or popups that block a site unless you register, that kind of thing.                    

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

ชื่อ removeanything removeanything
ID gmlkkilfhaiefnbnbgbmoodkebnpicfj
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/removeanything/gmlkkilfhaiefnbnbgbmoodkebnpicfj
คำอธิบาย sometimes you just want to get rid of an element quickly
ขนาดไฟล์ 11.31 KB
จำนวนการติดตั้ง 230
เวอร์ชันปัจจุบัน 0.1.0
อัปเดตครั้งล่าสุด 2015-02-16
วันที่เผยแพร่ 2015-02-16
คะแนน 3.17/5 รวมทั้งหมด 6 คะแนน
ผู้พัฒนา zeyus
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย http://www.zeyus.com/
URL หน้าช่วยเหลือ https://github.com/zeyus/remove-anything
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "removeanything",
    "description": "sometimes you just want to get rid of an element quickly",
    "version": "0.1.0",
    "icons": {
        "128": "res\/icon128.png",
        "16": "res\/icon16.png",
        "48": "res\/icon48.png"
    },
    "permissions": [
        "contextMenus",
        "activeTab",
        ""
    ],
    "content_scripts": [
        {
            "run_at": "document_end",
            "all_frames": true,
            "matches": [
                ""
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    }
}