Downworthy
Replaces hyberbolic headlines from bombastic viral websites with a slightly more realistic version.
Qu'est-ce que Downworthy ?
Downworthy est une extension Chrome développée par https://www.snipe.net, et sa fonction principale est "Replaces hyberbolic headlines from bombastic viral websites with a slightly more realistic version.".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Downworthy
Téléchargez les fichiers d'extension Downworthy au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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.
Informations de Base sur l'Extension
Nom | Downworthy |
ID | pkaoiecplgdldkfihclpndbakokopjde |
URL Officiel | https://chromewebstore.google.com/detail/downworthy/pkaoiecplgdldkfihclpndbakokopjde |
Description | Replaces hyberbolic headlines from bombastic viral websites with a slightly more realistic version. |
Taille du Fichier | 27.97 KB |
Nombre d'Installations | 1,508 |
Version Actuelle | 0.0.8 |
Dernière Mise à Jour | 2014-02-19 |
Date de Publication | 2014-02-19 |
Évaluation | 4.24/5 Total 112 Évaluations |
Développeur | https://www.snipe.net |
Type de Paiement | free |
Site Web de l'Extension | http://downworthy.snipe.net |
URL de la Page d'Aide | http://downworthy.snipe.net |
Langues Prises en Charge | 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" } |