Daily Mail Blocker
Reduce the risk of reading Daily Mail articles!
Qu'est-ce que Daily Mail Blocker ?
Daily Mail Blocker est une extension Chrome développée par Mark Smith, et sa fonction principale est "Reduce the risk of reading Daily Mail articles!".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Daily Mail Blocker
Téléchargez les fichiers d'extension Daily Mail Blocker au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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.
Informations de Base sur l'Extension
Nom | Daily Mail Blocker |
ID | liahmomnoplegkhbbkkegmnfcipndjbc |
URL Officiel | https://chromewebstore.google.com/detail/daily-mail-blocker/liahmomnoplegkhbbkkegmnfcipndjbc |
Description | Reduce the risk of reading Daily Mail articles! |
Taille du Fichier | 27.76 KB |
Nombre d'Installations | 17 |
Version Actuelle | 1.2 |
Dernière Mise à Jour | 2015-01-24 |
Date de Publication | 2015-01-24 |
Évaluation | 5.00/5 Total 1 Évaluations |
Développeur | Mark Smith |
Type de Paiement | free |
Langues Prises en Charge | 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\/*" ] } |