Daily Mail Blocker
Reduce the risk of reading Daily Mail articles!
Hvad er Daily Mail Blocker?
Daily Mail Blocker er en Chrome-udvidelse udviklet af Mark Smith, og dens hovedfunktion er "Reduce the risk of reading Daily Mail articles!".
Udvidelsesskærmbilleder
Download Daily Mail Blocker-udvidelses-CRX-fil
Download Daily Mail Blocker-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.
Brugsanvisning til Udvidelsen
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. Grundlæggende oplysninger om udvidelsen
| Navn | |
| ID | liahmomnoplegkhbbkkegmnfcipndjbc |
| Officiel URL | https://chromewebstore.google.com/detail/daily-mail-blocker/liahmomnoplegkhbbkkegmnfcipndjbc |
| Beskrivelse | Reduce the risk of reading Daily Mail articles! |
| Filstørrelse | 27.76 KB |
| Antal Installationer | 17 |
| Nuværende Version | 1.2 |
| Senest Opdateret | 2015-01-24 |
| Udgivelsesdato | 2015-01-24 |
| Bedømmelse | 5.00/5 Samlet 1 Bedømmelser |
| Udvikler | Mark Smith |
| Betalingsmetode | free |
| Understøttede Sprog | 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\/*"
]
} | |