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 là gì?

Fixer for Google News là một tiện ích mở rộng Chrome được phát triển bởi niu tech, và tính năng chính của nó là "Fix Google News by adding your favorite topics, locations, sources, saved searches and removing unnecessary ones from its front page".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Fixer for Google News

Tải xuống các tệp mở rộng Fixer for Google News dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Fixer for Google News Fixer for Google News
ID kpdohggcmekapjgidoihadecgdohldnm
URL Chính Thức https://chrome.google.com/webstore/detail/fixer-for-google-news/kpdohggcmekapjgidoihadecgdohldnm
Mô tả Fix Google News by adding your favorite topics, locations, sources, saved searches and removing unnecessary ones from its front page
Kích Thước Tệp 15.02 KB
Số Lần Cài Đặt 983
Phiên Bản Hiện Tại 0.3
Cập Nhật Lần Cuối 2018-12-07
Ngày Phát Hành 2018-12-07
Đánh Giá 2.54/5 Tổng số 35 Đánh Giá
Nhà Phát Triển niu tech
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/niutech/google-news-fixer
Ngôn Ngữ Được Hỗ Trợ 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
    }
}