Clickmate

A chrome extension to identify clickbait

Wat is Clickmate?

Clickmate is een Chrome-extensie ontwikkeld door Unknown, en de belangrijkste functie is "A chrome extension to identify clickbait".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie Clickmate

Download Clickmate-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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.                    

Basisinformatie over de Extensie

Naam Clickmate Clickmate
ID dpilcjcpbbhgfaiabpnkgcffmepipcpe
Officiële URL https://chromewebstore.google.com/detail/clickmate/dpilcjcpbbhgfaiabpnkgcffmepipcpe
Beschrijving A chrome extension to identify clickbait
Bestandsgrootte 14.02 KB
Aantal Installaties 48
Huidige Versie 0.0.0.2
Laatst Bijgewerkt 2017-04-06
Publicatiedatum 2017-04-06
Ontwikkelaar Unknown
Betalingswijze free
Ondersteunde Talen 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"
    ]
}