Click-to-hide

Hide elements on page by clicking on them.

Click-to-hideคืออะไร?

Click-to-hide เป็นส่วนขยายของ Chrome ที่พัฒนาโดย http://mattconn.io และคุณลักษณะหลักของมันคือ "Hide elements on page by clicking on them."

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Click-to-hide

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

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

                        # Click-to-hide
Chrome extension to delete element on page by clicking on it. Useful for ads and other page blocking elements.

## To Use:
Click on the Click-to-hide icon to enable the extension. You will know that the extension is enabled when you see your cursor appear as a crosshair. The script will then be enabled for one click at a time.

Cick on any element on the page to effectively remove or hide it. To remove another element on the page, click on the extension icon again to re-enable, and repeat this process for any remaining elements on the page that you wish to remove.                    

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

ชื่อ Click-to-hide Click-to-hide
ID lcdicpnpgjfaodmccefekkfecadllbjg
URL อย่างเป็นทางการ https://chrome.google.com/webstore/detail/click-to-hide/lcdicpnpgjfaodmccefekkfecadllbjg
คำอธิบาย Hide elements on page by clicking on them.
ขนาดไฟล์ 5.16 KB
จำนวนการติดตั้ง 127
เวอร์ชันปัจจุบัน 1.0.1
อัปเดตครั้งล่าสุด 2018-02-13
วันที่เผยแพร่ 2018-02-13
คะแนน 3.00/5 รวมทั้งหมด 2 คะแนน
ผู้พัฒนา http://mattconn.io
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/mattConn/chrome-click-to-hide
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Click-to-hide",
    "description": "Hide elements on page by clicking on them.",
    "version": "1.0.1",
    "permissions": [
        "activeTab",
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*",
                "file:\/\/*\/*"
            ],
            "css": [
                "style.css"
            ]
        }
    ],
    "browser_action": {
        "default_title": "Click-to-hide"
    },
    "icons": {
        "128": "icon128.png"
    },
    "manifest_version": 2
}