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”。

扩展截图

screenshot
screenshot

下载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.                    

扩展基本信息

名称 Fixer for Google News Fixer for Google News
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
    }
}