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!"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Daily Mail Blocker
ดาวน์โหลดไฟล์ส่วนขยาย 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 |
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\/*" ] } |