Polygraph
Polygraph analyzes webpages and warns you about dishonest articles.
ما هو Polygraph؟
Polygraph هو إضافة Chrome تم تطويرها بواسطة Andrew Peter Prifer، والميزة الرئيسية لها هي "Polygraph analyzes webpages and warns you about dishonest articles.".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Polygraph
قم بتنزيل ملفات الامتداد Polygraph بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
I made Polygraph to combat clickbait. Many journalists and writers use overly sensationalistic, exaggerating or downright deceitful headlines in order to attract attention. The extension analyzes the title and tells you about all the things that are possibly wrong with the article. Important! Polygraph is an experiment. As such, it is far from perfect. It is also open source: http://bit.ly/2j4zG6m
معلومات أساسية عن التمديد
الاسم | Polygraph |
ID | mbmblpolabjhoedckfbimgbnoogmcooi |
عنوان URL الرسمي | https://chromewebstore.google.com/detail/polygraph/mbmblpolabjhoedckfbimgbnoogmcooi |
الوصف | Polygraph analyzes webpages and warns you about dishonest articles. |
حجم الملف | 82.61 KB |
عدد التثبيتات | 34 |
النسخة الحالية | 0.1.1 |
آخر تحديث | 2017-01-17 |
تاريخ النشر | 2017-01-17 |
تقييم | 5.00/5 مجموع تقييمات 2 |
المطور | Andrew Peter Prifer |
البريد الإلكتروني | [email protected] |
نوع الدفع | free |
موقع الإضافة | https://github.com/andrewpeterprifer/Polygraph |
عنوان صفحة المساعدة | https://github.com/andrewpeterprifer/Polygraph/issues |
اللغات المدعومة | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "__MSG_appName__", "short_name": "__MSG_appShortName__", "description": "__MSG_appDescription__", "version": "0.1.1", "manifest_version": 2, "default_locale": "en", "icons": { "16": "images\/icon-16.png", "128": "images\/icon-128.png" }, "background": { "scripts": [ "scripts\/background.js" ] }, "page_action": { "default_icon": { "19": "images\/icon-19.png", "38": "images\/icon-38.png" }, "default_title": "__MSG_browserActionTitle__", "default_popup": "pages\/popup.html" }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "css": [ "styles\/contentscript.css" ], "js": [ "scripts\/contentscript.js" ], "run_at": "document_end", "all_frames": false } ] } |