FactPopUp
Creates notifications for fact-checking tweets.
FactPopUp क्या है?
FactPopUp gautamhathi द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Creates notifications for fact-checking tweets."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में FactPopUp एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
This extension notifies you whenever there's a new fact check. Source code available here: https://github.com/ReportersLabDuke/FactPopUp
एक्सटेंशन की मूल जानकारी
नाम | |
ID | faaleponcnfhmolcbaajapgbigfffckj |
आधिकारिक URL | https://chrome.google.com/webstore/detail/factpopup/faaleponcnfhmolcbaajapgbigfffckj |
विवरण | Creates notifications for fact-checking tweets. |
फ़ाइल का आकार | 336 KB |
स्थापना संख्या | 190 |
वर्तमान संस्करण | 2.1.0 |
अंतिम अपडेट | 2017-02-09 |
प्रकाशन तिथि | 2017-02-09 |
रेटिंग | 5.00/5 कुल 1 रेटिंग्स |
डेवलपर | gautamhathi |
भुगतान के प्रकार | free |
समर्थित भाषाएँ | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "FactPopUp", "description": "Creates notifications for fact-checking tweets.", "version": "2.1.0", "browser_action": { "default_icon": "logo.png", "default_popup": "popup.html" }, "background": { "scripts": [ "keys.js", "js\/alert.js", "lib\/CryptoJS v3.1.2\/rollups\/hmac-sha256.js", "lib\/CryptoJS v3.1.2\/components\/enc-base64-min.js" ], "persistent": true }, "content_security_policy": "media-src https:\/\/pbs.twimg.com\/media\/* 'self'; img-src https:\/\/pbs.twimg.com\/ 'self' data: chrome-extension-resource:; script-src 'self'; object-src 'self'", "permissions": [ "notifications", "activeTab", "alarms", "fontSettings", "https:\/\/ajax.googleapis.com\/*", "https:\/\/stream.twitter.com\/*", "http:\/\/www.politifact.com\/*", "https:\/\/pbs.twimg.com\/*", "https:\/\/raw.githubusercontent.com\/ReportersLabDuke\/FactPopUp\/*", "gcm", "storage", "https:\/\/*.servicebus.windows.net\/*", "management", "alarms" ], "externally_connectable": { "matches": [ "https:\/\/stream.twitter.com\/*", "http:\/\/www.politifact.com\/*" ] }, "web_accessible_resources": [ "logo.png" ] } |