Newsblock

Your recommender of credible news sources

ما هو Newsblock؟

Newsblock هو إضافة Chrome تم تطويرها بواسطة https://newsblock.co، والميزة الرئيسية لها هي "Your recommender of credible news sources".

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

screenshot
screenshot

تحميل ملف CRX للإضافة Newsblock

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

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

                        Newsblock was made to fight bad/clickbaity news by redirecting you to the best article covering the stories you click on

With the Newsblock plugin you can support quality news by simply browsing the web                    

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

الاسم Newsblock Newsblock
ID pkhdmfigkmhboekijlapffdjbdhhmmbg
عنوان URL الرسمي https://chromewebstore.google.com/detail/newsblock/pkhdmfigkmhboekijlapffdjbdhhmmbg
الوصف Your recommender of credible news sources
حجم الملف 160 KB
عدد التثبيتات 29
النسخة الحالية 1.09
آخر تحديث 2018-08-30
تاريخ النشر 2018-08-29
المطور https://newsblock.co
البريد الإلكتروني [email protected]
نوع الدفع free
موقع الإضافة http://newsblock.co
عنوان صفحة سياسة الخصوصية https://github.com/jawerty/myAlgorithm/blob/main/README.md
اللغات المدعومة en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Newsblock",
    "description": "Your recommender of credible news sources",
    "version": "1.09",
    "browser_action": {
        "default_icon": "newsblock_icon_128.png",
        "default_popup": "popup.html"
    },
    "icons": {
        "16": "newsblock_icon_16.png",
        "48": "newsblock_icon_48.png",
        "128": "newsblock_icon_128.png"
    },
    "background": {
        "scripts": [
            "google-analytics-bundle.js",
            "levenshtein.min.js",
            "background.js"
        ],
        "persistent": true
    },
    "permissions": [
        "https:\/\/www.google-analytics.com\/",
        "activeTab",
        "tabs",
        "webRequest",
        "webRequestBlocking",
        "",
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content.js"
            ],
            "run_at": "document_start"
        }
    ]
}