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 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 फ़ाइल डाउनलोड करें
crx प्रारूप में Fake News Detector with Pinocchio Alerts एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
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" ] } |