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 هو إضافة Chrome تم تطويرها بواسطة niu tech، والميزة الرئيسية لها هي "Fix Google News by adding your favorite topics, locations, sources, saved searches and removing unnecessary ones from its front page".

لقطات شاشة التمديد

screenshot
screenshot

تحميل ملف CRX للإضافة Fixer for Google News

قم بتنزيل ملفات الامتداد Fixer for Google News بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات 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
    }
}