Downworthy
Replaces hyberbolic headlines from bombastic viral websites with a slightly more realistic version.
Hvad er Downworthy?
Downworthy er en Chrome-udvidelse udviklet af https://www.snipe.net, og dens hovedfunktion er "Replaces hyberbolic headlines from bombastic viral websites with a slightly more realistic version.".
Udvidelsesskærmbilleder
Download Downworthy-udvidelses-CRX-fil
Download Downworthy-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
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. Grundlæggende oplysninger om udvidelsen
| Navn | |
| ID | pkaoiecplgdldkfihclpndbakokopjde |
| Officiel URL | https://chromewebstore.google.com/detail/downworthy/pkaoiecplgdldkfihclpndbakokopjde |
| Beskrivelse | Replaces hyberbolic headlines from bombastic viral websites with a slightly more realistic version. |
| Filstørrelse | 27.97 KB |
| Antal Installationer | 1,508 |
| Nuværende Version | 0.0.8 |
| Senest Opdateret | 2014-02-19 |
| Udgivelsesdato | 2014-02-19 |
| Bedømmelse | 4.24/5 Samlet 112 Bedømmelser |
| Udvikler | https://www.snipe.net |
| Betalingsmetode | free |
| Udvidelseswebsted | http://downworthy.snipe.net |
| Hjælpeside-URL | http://downworthy.snipe.net |
| Understøttede Sprog | 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"
} | |