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\/*" ] } |