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開發的Chrome擴展程式,該擴展的主要功能是“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擴展crx文件
下載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 |
官方網址 | 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" ] } |