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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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.                    

확장 프로그램 기본 정보

이름 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
    }
}