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 |
官方網址 | 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 } } |