Daily Mail Blocker

Reduce the risk of reading Daily Mail articles!

ما هو Daily Mail Blocker؟

Daily Mail Blocker هو إضافة Chrome تم تطويرها بواسطة Mark Smith، والميزة الرئيسية لها هي "Reduce the risk of reading Daily Mail articles!".

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

screenshot

تحميل ملف CRX للإضافة Daily Mail Blocker

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

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

                        This extension will prevent you from accidentally finding yourself reading the Daily Mail website.

If you accidentally click on a link to the Daily Mail, you will be redirected to the Guardian, which is a much more reputable publication.

To prevent accidentally clicking on links to the Daily Mail, a small warning icon will appear in the address bar if you are viewing a page that links to the Daily Mail.                    

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

الاسم Daily Mail Blocker Daily Mail Blocker
ID liahmomnoplegkhbbkkegmnfcipndjbc
عنوان URL الرسمي https://chromewebstore.google.com/detail/daily-mail-blocker/liahmomnoplegkhbbkkegmnfcipndjbc
الوصف Reduce the risk of reading Daily Mail articles!
حجم الملف 27.76 KB
عدد التثبيتات 17
النسخة الحالية 1.2
آخر تحديث 2015-01-24
تاريخ النشر 2015-01-24
تقييم 5.00/5 مجموع تقييمات 1
المطور Mark Smith
نوع الدفع free
اللغات المدعومة en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Daily Mail Blocker",
    "version": "1.2",
    "manifest_version": 2,
    "description": "Reduce the risk of reading Daily Mail articles!",
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png",
        "256": "icon256.png"
    },
    "background": {
        "scripts": [
            "blocker.js",
            "background.js"
        ]
    },
    "page_action": {
        "default_icon": "icon128.png",
        "default_title": "There are Daily Mail links in this page!"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "contentscript.js"
            ],
            "run_at": "document_idle",
            "all_frames": false
        }
    ],
    "permissions": [
        "webRequest",
        "webRequestBlocking",
        "http:\/\/www.dailymail.co.uk\/*"
    ]
}