Downworthy
Replaces hyberbolic headlines from bombastic viral websites with a slightly more realistic version.
Vad är Downworthy?
Downworthy är en Chrome-tillägg utvecklad av https://www.snipe.net, och dess huvudfunktion är "Replaces hyberbolic headlines from bombastic viral websites with a slightly more realistic version.".
Tilläggsskärmbilder
Ladda ner Downworthy-förlängningens CRX-fil
Ladda ner Downworthy-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
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äggande Information om Tillägg
Namn | Downworthy |
ID | pkaoiecplgdldkfihclpndbakokopjde |
Officiell webbadress | https://chromewebstore.google.com/detail/downworthy/pkaoiecplgdldkfihclpndbakokopjde |
Beskrivning | Replaces hyberbolic headlines from bombastic viral websites with a slightly more realistic version. |
Filstorlek | 27.97 KB |
Antal Installationer | 1,508 |
Aktuell Version | 0.0.8 |
Senast Uppdaterad | 2014-02-19 |
Publiceringsdatum | 2014-02-19 |
Betyg | 4.24/5 Totalt 112 Betyg |
Utvecklare | https://www.snipe.net |
Betalningssätt | free |
Tilläggswebbplats | http://downworthy.snipe.net |
Hjälpsida URL | http://downworthy.snipe.net |
Stödda Språk | 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" } |