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によって開発されたChromeの拡張機能で、その主な機能は「Fix Google News by adding your favorite topics, locations, sources, saved searches and removing unnecessary ones from its front page」です。
拡張機能のスクリーンショット
Fixer for Google News拡張機能のCRXファイルをダウンロード
Fixer for Google News拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
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 } } |