Clickmate
A chrome extension to identify clickbait
Was ist Clickmate?
Clickmate ist eine Chrome-Erweiterung, die von Unknown entwickelt wurde, und ihr Hauptmerkmal ist "A chrome extension to identify clickbait".
Erweiterungsscreenshots
Clickmate-Erweiterungs-CRX-Datei herunterladen
Laden Sie Clickmate-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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.
Grundlegende Informationen zur Erweiterung
Name | Clickmate |
ID | dpilcjcpbbhgfaiabpnkgcffmepipcpe |
Offizielle URL | https://chromewebstore.google.com/detail/clickmate/dpilcjcpbbhgfaiabpnkgcffmepipcpe |
Beschreibung | A chrome extension to identify clickbait |
Dateigröße | 14.02 KB |
Installationsanzahl | 48 |
Aktuelle Version | 0.0.0.2 |
Letztes Update | 2017-04-06 |
Veröffentlichungsdatum | 2017-04-06 |
Entwickler | Unknown |
Zahlungsart | free |
Unterstützte Sprachen | 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" ] } |