Fake News Detector with Pinocchio Alerts
Fact check plugin to detect fake news in articles you read. If it has been reported we will let you know
Τι είναι το Fake News Detector with Pinocchio Alerts;
Το Fake News Detector with Pinocchio Alerts είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον https://pinocchioalerts.com, και η κύρια λειτουργία του είναι "Fact check plugin to detect fake news in articles you read. If it has been reported we will let you know".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης Fake News Detector with Pinocchio Alerts
Λήψη αρχείων επέκτασης Fake News Detector with Pinocchio Alerts σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
Pinocchio Alerts is an extension that warns you if the website you are reading has been reported as inaccurate (because of fake news related to that website). We think the world gets better when we all avoid spreading alternative facts! We work with several organizations to help stop the spread of bogus news. There is nothing wrong with questioning what we read. Please do your part by checking sources and helping your friends and family do the same. Hope you enjoy!
Βασικές Πληροφορίες Επέκτασης
Όνομα | |
ID | opdabcbeebkhbhoppdcmggdoahpjhdii |
Επίσημο URL | https://chrome.google.com/webstore/detail/fake-news-detector-with-p/opdabcbeebkhbhoppdcmggdoahpjhdii |
Περιγραφή | Fact check plugin to detect fake news in articles you read. If it has been reported we will let you know |
Μέγεθος Αρχείου | 83.78 KB |
Αριθμός Εγκαταστάσεων | 134 |
Τρέχουσα Έκδοση | 1.1 |
Τελευταία Ενημέρωση | 2017-07-28 |
Ημερομηνία Δημοσίευσης | 2017-07-28 |
Αξιολόγηση | 5.00/5 Συνολικά 1 Αξιολογήσεις |
Προγραμματιστής | https://pinocchioalerts.com |
Ηλεκτρονικό ταχυδρομείο | [email protected] |
Τύπος Πληρωμής | free |
Ιστότοπος Επέκτασης | https://pinocchioalerts.com/ |
URL της Σελίδας Πολιτικής Απορρήτου | https://pinocchioalerts.com/pino_privacypolicy.htm |
Υποστηριζόμενες Γλώσσες | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Fake News Detector with Pinocchio Alerts", "description": "Fact check plugin to detect fake news in articles you read. If it has been reported we will let you know", "version": "1.1", "content_security_policy": "script-src 'self' https:\/\/ssl.google-analytics.com; object-src 'self'", "author": "Diego Alvarez and Andres Vidal", "browser_action": { "default_icon": "pino_38.png", "default_popup": "popup.html", "default_title": "Click to check for Pinocchio Alerts!" }, "icons": { "128": "pino_128.png" }, "background": { "scripts": [ "background.js" ] }, "content_scripts": [ { "js": [ "content_validator.js" ], "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ] } ], "permissions": [ "tabs", "notifications" ] } |