Polygraph
Polygraph analyzes webpages and warns you about dishonest articles.
Polygraph क्या है?
Polygraph Andrew Peter Prifer द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Polygraph analyzes webpages and warns you about dishonest articles."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Polygraph एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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 |
सहायता पृष्ठ URL | 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 } ] } |