Good News
Blocks unwanted news stories from appearing in your Google News feed.
Good News क्या है?
Good News MrSethT द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Blocks unwanted news stories from appearing in your Google News feed."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Good News एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
It blocks unwanted news stories from appearing in your Google news feed. Add keywords and key phrases as patterns to block. Then, any headlines or leads that contain those patterns will be hidden from view. To restore them, either remove the pattern or click the "show" link at the top of the news feed. Import my list as a starter - https://pastebin.com/dh9TuPsL What's new- 06/2018 - first word bug - attempt to prevent overly simple keywords 05/2018 - started handling new layout 07/2017 - much faster - can hide notification - works with new redesign - added "Silent Mode" - UI tweaks - now applies to all regions (*://news.google.*) It largely borrows from Personal Blocklist (by Google) Keyword muting, trump, kardashian, block
एक्सटेंशन की मूल जानकारी
नाम | Good News |
ID | ekcmgkhakdlcondlgmadpiogjnlggpne |
आधिकारिक URL | https://chromewebstore.google.com/detail/good-news/ekcmgkhakdlcondlgmadpiogjnlggpne |
विवरण | Blocks unwanted news stories from appearing in your Google News feed. |
फ़ाइल का आकार | 154 KB |
स्थापना संख्या | 4,185 |
वर्तमान संस्करण | 3.11 |
अंतिम अपडेट | 2019-01-31 |
प्रकाशन तिथि | 2019-01-31 |
रेटिंग | 4.69/5 कुल 228 रेटिंग्स |
डेवलपर | MrSethT |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
समर्थित भाषाएँ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "author": "Seth Thompson", "background": { "scripts": [ "common.js" ] }, "browser_action": { "default_icon": "images\/icon48.png", "default_popup": "manager.html", "default_title": "Good News" }, "content_scripts": [ { "js": [ "common.js", "content_script.js" ], "matches": [ "*:\/\/*\/*" ], "run_at": "document_start" } ], "default_locale": "en", "description": "Blocks unwanted news stories from appearing in your Google News feed.", "icons": { "128": "images\/icon128.png", "16": "images\/icon16.png", "48": "images\/icon48.png" }, "manifest_version": 2, "name": "Good News", "permissions": [ "tabs", "*:\/\/*\/*" ], "version": "3.11" } |