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.」です。
拡張機能のスクリーンショット
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.
拡張機能の基本情報
名前 | |
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\/*" ] } |