Fixer for Google News
Fix Google News by adding your favorite topics, locations, sources, saved searches and removing unnecessary ones from its front page
Fixer for Google News क्या है?
Fixer for Google News niu tech द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Fix Google News by adding your favorite topics, locations, sources, saved searches and removing unnecessary ones from its front page"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Fixer for Google News एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
Fixer for Google News (beta) fixes the inability to customize the new Google News front page by adding and removing sections from it. All your favorite topics, sources and saved searches are being appended to the main news feed. You can choose which standard topics to remove from the feed in the extension options. You can view the source code and contribute at: https://github.com/niutech/google-news-fixer Notice: The extension is in beta stage, it is provided "as is" and it is not affiliated with Google. Google News is a trademark of Google Inc. Icon made by Oxy Nation.
एक्सटेंशन की मूल जानकारी
नाम | |
ID | kpdohggcmekapjgidoihadecgdohldnm |
आधिकारिक URL | https://chrome.google.com/webstore/detail/fixer-for-google-news/kpdohggcmekapjgidoihadecgdohldnm |
विवरण | Fix Google News by adding your favorite topics, locations, sources, saved searches and removing unnecessary ones from its front page |
फ़ाइल का आकार | 15.02 KB |
स्थापना संख्या | 983 |
वर्तमान संस्करण | 0.3 |
अंतिम अपडेट | 2018-12-07 |
प्रकाशन तिथि | 2018-12-07 |
रेटिंग | 2.54/5 कुल 35 रेटिंग्स |
डेवलपर | niu tech |
भुगतान के प्रकार | free |
एक्सटेंशन वेबसाइट | https://github.com/niutech/google-news-fixer |
समर्थित भाषाएँ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Fixer for Google News", "short_name": "Fixer for Google News", "description": "Fix Google News by adding your favorite topics, locations, sources, saved searches and removing unnecessary ones from its front page", "version": "0.3", "author": "niu tech", "icons": { "16": "img\/icon16.png", "32": "img\/icon32.png", "48": "img\/icon48.png", "128": "img\/icon128.png" }, "content_scripts": [ { "matches": [ "https:\/\/news.google.com\/*" ], "css": [ "content.css" ], "js": [ "content.js" ], "run_at": "document_end" } ], "browser_action": { "default_icon": { "16": "img\/icon16.png", "32": "img\/icon32.png", "48": "img\/icon48.png" }, "default_title": "Fixer for Google News" }, "permissions": [ "activeTab", "storage" ], "options_ui": { "page": "options.html", "chrome_style": true } } |