Daily Mail Blocker

Reduce the risk of reading Daily Mail articles!

Daily Mail Blocker là gì?

Daily Mail Blocker là một tiện ích mở rộng Chrome được phát triển bởi Mark Smith, và tính năng chính của nó là "Reduce the risk of reading Daily Mail articles!".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Daily Mail Blocker

Tải xuống các tệp mở rộng Daily Mail Blocker dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Daily Mail Blocker Daily Mail Blocker
ID liahmomnoplegkhbbkkegmnfcipndjbc
URL Chính Thức https://chromewebstore.google.com/detail/daily-mail-blocker/liahmomnoplegkhbbkkegmnfcipndjbc
Mô tả Reduce the risk of reading Daily Mail articles!
Kích Thước Tệp 27.76 KB
Số Lần Cài Đặt 17
Phiên Bản Hiện Tại 1.2
Cập Nhật Lần Cuối 2015-01-24
Ngày Phát Hành 2015-01-24
Đánh Giá 5.00/5 Tổng số 1 Đánh Giá
Nhà Phát Triển Mark Smith
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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\/*"
    ]
}