Stop Clickbait

Notifying clickbait content to online news readers

Τι είναι το Stop Clickbait;

Το Stop Clickbait είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Sourya Kakarla, και η κύρια λειτουργία του είναι "Notifying clickbait content to online news readers".

Στιγμιότυπα Επέκτασης

screenshot
screenshot
screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης Stop Clickbait

Λήψη αρχείων επέκτασης Stop Clickbait σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        This extension works across multiple websites to identify clickbait content and notify it to the user. The user can block similar clickbait content (which works similar to adblock). It also has the option to ​report undetected links as clickbait. The user can also report misclassified links which are mistakenly detected as clickbait. Such feedback helps in improving the extension. It currently works on a number of selected websites. We would cover more websites in future.                    

Βασικές Πληροφορίες Επέκτασης

Όνομα Stop Clickbait Stop Clickbait
ID iffolfpdcmehbghbamkgobjjdeejinma
Επίσημο URL https://chrome.google.com/webstore/detail/stop-clickbait/iffolfpdcmehbghbamkgobjjdeejinma
Περιγραφή Notifying clickbait content to online news readers
Μέγεθος Αρχείου 226 KB
Αριθμός Εγκαταστάσεων 1,568
Τρέχουσα Έκδοση 0.2
Τελευταία Ενημέρωση 2018-01-17
Ημερομηνία Δημοσίευσης 2018-01-17
Αξιολόγηση 3.82/5 Συνολικά 33 Αξιολογήσεις
Προγραμματιστής Sourya Kakarla
Τύπος Πληρωμής free
Υποστηριζόμενες Γλώσσες en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Stop Clickbait",
    "description": "Notifying clickbait content to online news readers",
    "version": "0.2",
    "icons": {
        "19": "icons\/notepad_19.png",
        "128": "icons\/notepad_128.png",
        "38": "icons\/notepad_38.png"
    },
    "permissions": [
        "contextMenus",
        "storage",
        "tabs",
        "http:\/\/localhost:9000\/",
        "http:\/\/cnerg.iitkgp.ac.in\/p\/stop_clickbait\/*",
        "http:\/\/35.162.154.107\/",
        "http:\/\/ec2-35-162-39-236.us-west-2.compute.amazonaws.com\/"
    ],
    "content_scripts": [
        {
            "css": [
                "dropdown.css"
            ],
            "matches": [
                "https:\/\/facebook.com\/*",
                "https:\/\/www.facebook.com\/*",
                "https:\/\/*.twitter.com\/*",
                "https:\/\/www.twitter.com\/*",
                "https:\/\/*.buzzfeed.com\/*",
                "https:\/\/www.buzzfeed.com\/*",
                "https:\/\/*.scoopwhoop.com\/*",
                "https:\/\/www.scoopwhoop.com\/*",
                "https:\/\/*.nytimes.com\/",
                "https:\/\/www.nytimes.com\/*",
                "https:\/\/*.rvcj.com\/",
                "https:\/\/www.rvcj.com\/*",
                "https:\/\/timesofindia.indiatimes.com\/*",
                "https:\/\/timesofindia.indiatimes.com\/",
                "https:\/\/www.youtube.com\/*",
                "https:\/\/www.beingindian.com\/*",
                "https:\/\/*.beingindian.com\/"
            ],
            "run_at": "document_idle",
            "js": [
                "jquery.js",
                "myscript2.js"
            ]
        }
    ],
    "page_action": {
        "default_title": "Stop Clickbait",
        "default_popup": "popup.html",
        "default_icon": {
            "19": "icons\/notepad_19.png",
            "128": "icons\/notepad_128.png",
            "38": "icons\/notepad_38.png"
        }
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": true
    }
}