So It Goes

Adds 'So it goes' where appropriate to remind you that death is just a bad condition at a particular moment in one's existence.

Cos'è So It Goes?

So It Goes è un'estensione di Chrome sviluppata da Zach Adams, e la sua funzione principale è "Adds 'So it goes' where appropriate to remind you that death is just a bad condition at a particular moment in one's existence.".

Screenshot dell'Estensione

screenshot
screenshot
screenshot

Scarica il file CRX dell'estensione So It Goes

Scarica i file di estensione So It Goes 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

                        Adds in the phrase "so it goes" onto sentences or mentions of death on the text of the page you're visiting.

Not guaranteed to work 100% of the time, but as far as it's been tested it seems to catch the vast majority of applicable circumstances.

Source available here: https://github.com/zach-adams/so-it-goes                    

Informazioni di Base sull'Estensione

Nome So It Goes So It Goes
ID lbjgfodghkchhcpaeiiabadcllbommcl
URL Ufficiale https://chromewebstore.google.com/detail/so-it-goes/lbjgfodghkchhcpaeiiabadcllbommcl
Descrizione Adds 'So it goes' where appropriate to remind you that death is just a bad condition at a particular moment in one's existence.
Dimensione del File 10.26 KB
Conteggio Installazioni 44
Versione Corrente 1.3.5
Ultimo Aggiornamento 2020-02-21
Data di Pubblicazione 2020-02-21
Valutazione 4.71/5 Totale 7 Valutazioni
Sviluppatore Zach Adams
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/zach-adams/so-it-goes
URL della Pagina di Aiuto https://github.com/zach-adams/so-it-goes
URL della Pagina della Politica sulla Privacy https://zach-adams.com/privacy-policy/chrome-extensions.txt
Lingue Supportate en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "So It Goes",
    "version": "1.3.5",
    "description": "Adds 'So it goes' where appropriate to remind you that death is just a bad condition at a particular moment in one's existence.",
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "permissions": [
        "file:\/\/*\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*",
                "file:\/\/*\/*"
            ],
            "js": [
                "content_script.js"
            ],
            "run_at": "document_end"
        }
    ]
}