Daily Mail Blocker
Reduce the risk of reading Daily Mail articles!
什麼是Daily Mail Blocker?
Daily Mail Blocker是由Mark Smith開發的Chrome擴展程式,該擴展的主要功能是“Reduce the risk of reading Daily Mail articles!”。
擴展截圖
下載Daily Mail Blocker擴展crx文件
下載Daily Mail Blocker擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
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 |
ID | liahmomnoplegkhbbkkegmnfcipndjbc |
官方網址 | 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\/*" ] } |