Downworthy
Replaces hyberbolic headlines from bombastic viral websites with a slightly more realistic version.
Wat is Downworthy?
Downworthy is een Chrome-extensie ontwikkeld door https://www.snipe.net, en de belangrijkste functie is "Replaces hyberbolic headlines from bombastic viral websites with a slightly more realistic version.".
Extensie Screenshots
Download het CRX-bestand van de extensie Downworthy
Download Downworthy-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
Downworthy replaces hyberbolic headlines from bombastic viral websites with a slightly more realistic version. "Literally" becomes "figuratively", "Will Blow Your Mind" becomes "Might Perhaps Mildly Entertain You For a Moment", and so on. Visit the website at downworthy.snipe.net for more info. Basisinformatie over de Extensie
| Naam | |
| ID | pkaoiecplgdldkfihclpndbakokopjde |
| Officiële URL | https://chromewebstore.google.com/detail/downworthy/pkaoiecplgdldkfihclpndbakokopjde |
| Beschrijving | Replaces hyberbolic headlines from bombastic viral websites with a slightly more realistic version. |
| Bestandsgrootte | 27.97 KB |
| Aantal Installaties | 1,508 |
| Huidige Versie | 0.0.8 |
| Laatst Bijgewerkt | 2014-02-19 |
| Publicatiedatum | 2014-02-19 |
| Beoordeling | 4.24/5 Totaal 112 Beoordelingen |
| Ontwikkelaar | https://www.snipe.net |
| Betalingswijze | free |
| Extensiewebsite | http://downworthy.snipe.net |
| Help Pagina-URL | http://downworthy.snipe.net |
| Ondersteunde Talen | en-US |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "Downworthy",
"version": "0.0.8",
"description": "Replaces hyberbolic headlines from bombastic viral websites with a slightly more realistic version.",
"permissions": [
"storage"
],
"background": {
"page": "background.html"
},
"content_scripts": [
{
"matches": [
"*:\/\/*\/*"
],
"js": [
"content_script.js"
],
"run_at": "document_end"
}
],
"icons": {
"16": "images\/icon16.png",
"48": "images\/icon48.png",
"128": "images\/icon128.png"
},
"browser_action": {
"default_icon": "images\/icon19-on.png",
"default_title": "Toggle Downworthy"
},
"content_security_policy": "default-src 'none'; script-src 'self'",
"options_page": "options.html"
} | |