Clickmate
A chrome extension to identify clickbait
What is Clickmate?
Clickmate is a Chrome extension developed by Unknown, and its main feature is "A chrome extension to identify clickbait".
Extension Screenshots
Download Clickmate Extension CRX File
Download Clickmate extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
This chrome extension uses Neural Net to predict and indicate clickbait articles on Facebook. Unlike other clickbait extensions, Clickmate is non intrusive. It blocks the visibility of the articles marked as clickbait while still allowing you to see it if you place the cursor on the article.
Extension Basic Information
Name | Clickmate |
ID | dpilcjcpbbhgfaiabpnkgcffmepipcpe |
Official URL | https://chromewebstore.google.com/detail/clickmate/dpilcjcpbbhgfaiabpnkgcffmepipcpe |
Description | A chrome extension to identify clickbait |
File Size | 14.02 KB |
Installation Count | 48 |
Current Version | 0.0.0.2 |
Last Updated | 2017-04-06 |
Publish Date | 2017-04-06 |
Developer | Unknown |
Payment Type | free |
Supported Languages | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Clickmate", "version": "0.0.0.2", "author": "Yogesh Kumar, Preeti Bhandari", "description": "A chrome extension to identify clickbait", "background": { "scripts": [ "facebook.js" ] }, "browser_action": { "default_icon": "click_64.png", "default_title": "Clickmate" }, "icons": { "128": "click_128.png", "64": "click_64.png", "32": "click_32.png", "16": "click_16.png" }, "permissions": [ "http:\/\/www.facebook.com\/*", "https:\/\/www.facebook.com\/*", "https:\/\/clickmate.herokuapp.com\/*" ], "content_scripts": [ { "css": [ "styles.css" ], "js": [ "facebook.js" ], "matches": [ "http:\/\/www.facebook.com\/*", "https:\/\/www.facebook.com\/*" ] } ], "content_security_policy": "script-src 'self' https:\/\/ajax.googleapis.com; object-src 'self'", "web_accessible_resources": [ "styles.css" ] } |