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.

Hvad er So It Goes?

So It Goes er en Chrome-udvidelse udviklet af Zach Adams, og dens hovedfunktion er "Adds 'So it goes' where appropriate to remind you that death is just a bad condition at a particular moment in one's existence.".

Udvidelsesskærmbilleder

screenshot
screenshot
screenshot

Download So It Goes-udvidelses-CRX-fil

Download So It Goes-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

                        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                    

Grundlæggende oplysninger om udvidelsen

Navn So It Goes So It Goes
ID lbjgfodghkchhcpaeiiabadcllbommcl
Officiel URL https://chromewebstore.google.com/detail/so-it-goes/lbjgfodghkchhcpaeiiabadcllbommcl
Beskrivelse Adds 'So it goes' where appropriate to remind you that death is just a bad condition at a particular moment in one's existence.
Filstørrelse 10.26 KB
Antal Installationer 44
Nuværende Version 1.3.5
Senest Opdateret 2020-02-21
Udgivelsesdato 2020-02-21
Bedømmelse 4.71/5 Samlet 7 Bedømmelser
Udvikler Zach Adams
E-mail [email protected]
Betalingsmetode free
Udvidelseswebsted https://github.com/zach-adams/so-it-goes
Hjælpeside-URL https://github.com/zach-adams/so-it-goes
URL til Fortrolighedspolitik Side https://zach-adams.com/privacy-policy/chrome-extensions.txt
Understøttede Sprog 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"
        }
    ]
}