StopTheBullshit
Blocks websites that publish fake news.
Was ist StopTheBullshit?
StopTheBullshit ist eine Chrome-Erweiterung, die von Jacopo Notarstefano entwickelt wurde, und ihr Hauptmerkmal ist "Blocks websites that publish fake news.".
Erweiterungsscreenshots
StopTheBullshit-Erweiterungs-CRX-Datei herunterladen
Laden Sie StopTheBullshit-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
Grundlegende Informationen zur Erweiterung
| Name | |
| ID | mgpabnifogoiekagmgfphjbljpfojkif |
| Offizielle URL | https://chromewebstore.google.com/detail/stopthebullshit/mgpabnifogoiekagmgfphjbljpfojkif |
| Beschreibung | Blocks websites that publish fake news. |
| Dateigröße | 880 KB |
| Installationsanzahl | 180 |
| Aktuelle Version | 0.2.5 |
| Letztes Update | 2017-07-02 |
| Veröffentlichungsdatum | 2017-07-01 |
| Bewertung | 4.22/5 Insgesamt 9 Bewertungen |
| Entwickler | Jacopo Notarstefano |
| Zahlungsart | free |
| Erweiterungswebsite | https://github.com/jacquerie/stop-the-bullshit |
| Unterstützte Sprachen | en-US |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "StopTheBullshit",
"description": "Blocks websites that publish fake news.",
"author": "Jacopo Notarstefano",
"version": "0.2.5",
"icons": {
"48": "src\/img\/StB48.png",
"128": "src\/img\/StB128.png"
},
"background": {
"scripts": [
"src\/js\/urls.js",
"src\/js\/background.js"
]
},
"content_scripts": [
{
"matches": [
"*:\/\/*.facebook.com\/*"
],
"css": [
"src\/css\/facebook.css"
],
"js": [
"lib\/underscore\/underscore.min.js",
"lib\/jquery\/jquery.min.js",
"src\/js\/urls.js",
"src\/js\/facebook.js"
]
}
],
"web_accessible_resources": [
"src\/blocked.html"
],
"permissions": [
"webRequest",
"webRequestBlocking",
"http:\/\/*\/*",
"https:\/\/*\/*"
]
} | |