FactPopUp
Creates notifications for fact-checking tweets.
ما هو FactPopUp؟
FactPopUp هو إضافة Chrome تم تطويرها بواسطة gautamhathi، والميزة الرئيسية لها هي "Creates notifications for fact-checking tweets.".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة FactPopUp
قم بتنزيل ملفات الامتداد FactPopUp بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات 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" ] } |