ClickMask

Automatically detect and remove clickbait from the webpages you visit.

ClickMaskคืออะไร?

ClickMask เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Sentim และคุณลักษณะหลักของมันคือ "Automatically detect and remove clickbait from the webpages you visit."

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

screenshot
screenshot
screenshot

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

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

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

                        Clickmask uses machine learning to automatically remove clickbait links from any website that you visit. Clickbait is any link that is vague, misleading, sensationalized and/or emotionally charged in order to make people click on the link more often than they would otherwise. We think that clickbait is frustrating and distracting, so we created this add-on in order to bring back control of what you see into your hands.

Besides just removing the clickbait links, you can also view what links we removed and what we thought of the links on the page. You can flag links on the page for us to review if you think they were clickbait and ClickMask didn't think they were. Finally, you can change in the settings how sure ClickMask has to be that a link is clickbait in order to remove it from the page.                    

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

ชื่อ ClickMask ClickMask
ID bilooicfpkfnbjnpcldapgkcbgfkdkpc
URL อย่างเป็นทางการ https://chrome.google.com/webstore/detail/clickmask/bilooicfpkfnbjnpcldapgkcbgfkdkpc
คำอธิบาย Automatically detect and remove clickbait from the webpages you visit.
ขนาดไฟล์ 88.65 KB
จำนวนการติดตั้ง 87
เวอร์ชันปัจจุบัน 1.2.1
อัปเดตครั้งล่าสุด 2019-03-08
วันที่เผยแพร่ 2019-03-08
คะแนน 5.00/5 รวมทั้งหมด 3 คะแนน
ผู้พัฒนา Sentim
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://clickmask.com
URL หน้าช่วยเหลือ https://clickmask.com/clickbait_faq.html
URL หน้านโยบายความเป็นส่วนตัว https://sentimllc.com/terms/privacy-policy.html
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "ClickMask",
    "version": "1.2.1",
    "description": "Automatically detect and remove clickbait from the webpages you visit.",
    "browser_action": {
        "browser_style": true,
        "default_popup": "menu\/choose_page.html",
        "default_icon": {
            "48": "icons\/ShadowIcon.png",
            "96": "icons\/ShadowIcon96.png"
        }
    },
    "icons": {
        "48": "icons\/ShadowIcon.png",
        "96": "icons\/ShadowIcon96.png"
    },
    "background": {
        "scripts": [
            "browser.js",
            "io.js",
            "clientjs\/client.min.js",
            "badge.js",
            "background.js"
        ]
    },
    "options_ui": {
        "page": "settings\/settings.html"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "browser.js",
                "io.js",
                "sidebar.js",
                "matrix_functions.js",
                "network_functions.js",
                "gen_network.js",
                "domains.js",
                "link-editor.js"
            ]
        }
    ],
    "permissions": [
        "activeTab",
        "tabs",
        "contextMenus",
        "storage",
        "unlimitedStorage",
        "https:\/\/clickmask-website.firebaseio.com\/*"
    ]
}