Google News No Top Stories

Removes Top Stories from Google News

ما هو Google News No Top Stories؟

Google News No Top Stories هو إضافة Chrome تم تطويرها بواسطة robnield، والميزة الرئيسية لها هي "Removes Top Stories from Google News".

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

screenshot

تحميل ملف CRX للإضافة Google News No Top Stories

قم بتنزيل ملفات الامتداد Google News No Top Stories بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        Simple extension to remove Google New's Top Stories section.                    

معلومات أساسية عن التمديد

الاسم Google News No Top Stories Google News No Top Stories
ID oikdcblndphhmpmillphjmdpgkghcolc
عنوان URL الرسمي https://chrome.google.com/webstore/detail/google-news-no-top-storie/oikdcblndphhmpmillphjmdpgkghcolc
الوصف Removes Top Stories from Google News
حجم الملف 35.21 KB
عدد التثبيتات 32
النسخة الحالية 1.1
آخر تحديث 2016-08-17
تاريخ النشر 2016-08-17
تقييم 2.63/5 مجموع تقييمات 8
المطور robnield
نوع الدفع free
اللغات المدعومة en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Google News No Top Stories",
    "description": "Removes Top Stories from Google News",
    "version": "1.1",
    "page_action": {
        "default_icon": "icon.png",
        "default_title": "Remove Google News Top Stories"
    },
    "background": {
        "scripts": [
            "eventPage.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/news.google.com\/*",
                "http:\/\/news.google.com\/*"
            ],
            "js": [
                "google_cs.js",
                "jquery.min.js"
            ],
            "css": [
                "google_cs.css"
            ]
        }
    ],
    "permissions": [
        "tabs",
        "http:\/\/news.google.com\/*",
        "https:\/\/news.google.com\/*"
    ]
}