ClickMask

Automatically detect and remove clickbait from the webpages you visit.

什麼是ClickMask?

ClickMask是由Sentim開發的Chrome擴展程式,該擴展的主要功能是“Automatically detect and remove clickbait from the webpages you visit.”。

擴展截圖

screenshot
screenshot
screenshot

下載ClickMask擴展crx文件

下載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
官方網址 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\/*"
    ]
}