Fixer for Google News

Fix Google News by adding your favorite topics, locations, sources, saved searches and removing unnecessary ones from its front page

Qu'est-ce que Fixer for Google News ?

Fixer for Google News est une extension Chrome développée par niu tech, et sa fonction principale est "Fix Google News by adding your favorite topics, locations, sources, saved searches and removing unnecessary ones from its front page".

Captures d'Écran de l'Extension

screenshot
screenshot

Télécharger le fichier CRX de l'extension Fixer for Google News

Téléchargez les fichiers d'extension Fixer for Google News au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom Fixer for Google News Fixer for Google News
ID kpdohggcmekapjgidoihadecgdohldnm
URL Officiel https://chrome.google.com/webstore/detail/fixer-for-google-news/kpdohggcmekapjgidoihadecgdohldnm
Description Fix Google News by adding your favorite topics, locations, sources, saved searches and removing unnecessary ones from its front page
Taille du Fichier 15.02 KB
Nombre d'Installations 983
Version Actuelle 0.3
Dernière Mise à Jour 2018-12-07
Date de Publication 2018-12-07
Évaluation 2.54/5 Total 35 Évaluations
Développeur niu tech
Type de Paiement free
Site Web de l'Extension https://github.com/niutech/google-news-fixer
Langues Prises en Charge 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
    }
}