Downworthy

Replaces hyberbolic headlines from bombastic viral websites with a slightly more realistic version.

Cos'è Downworthy?

Downworthy è un'estensione di Chrome sviluppata da https://www.snipe.net, e la sua funzione principale è "Replaces hyberbolic headlines from bombastic viral websites with a slightly more realistic version.".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Downworthy

Scarica i file di estensione Downworthy in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome Downworthy Downworthy
ID pkaoiecplgdldkfihclpndbakokopjde
URL Ufficiale https://chromewebstore.google.com/detail/downworthy/pkaoiecplgdldkfihclpndbakokopjde
Descrizione Replaces hyberbolic headlines from bombastic viral websites with a slightly more realistic version.
Dimensione del File 27.97 KB
Conteggio Installazioni 1,508
Versione Corrente 0.0.8
Ultimo Aggiornamento 2014-02-19
Data di Pubblicazione 2014-02-19
Valutazione 4.24/5 Totale 112 Valutazioni
Sviluppatore https://www.snipe.net
Tipo di Pagamento free
Sito Web dell'Estensione http://downworthy.snipe.net
URL della Pagina di Aiuto http://downworthy.snipe.net
Lingue Supportate 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"
}