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.

Was ist So It Goes?

So It Goes ist eine Chrome-Erweiterung, die von Zach Adams entwickelt wurde, und ihr Hauptmerkmal ist "Adds 'So it goes' where appropriate to remind you that death is just a bad condition at a particular moment in one's existence.".

Erweiterungsscreenshots

screenshot
screenshot
screenshot

So It Goes-Erweiterungs-CRX-Datei herunterladen

Laden Sie So It Goes-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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                    

Grundlegende Informationen zur Erweiterung

Name So It Goes So It Goes
ID lbjgfodghkchhcpaeiiabadcllbommcl
Offizielle URL https://chromewebstore.google.com/detail/so-it-goes/lbjgfodghkchhcpaeiiabadcllbommcl
Beschreibung Adds 'So it goes' where appropriate to remind you that death is just a bad condition at a particular moment in one's existence.
Dateigröße 10.26 KB
Installationsanzahl 44
Aktuelle Version 1.3.5
Letztes Update 2020-02-21
Veröffentlichungsdatum 2020-02-21
Bewertung 4.71/5 Insgesamt 7 Bewertungen
Entwickler Zach Adams
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://github.com/zach-adams/so-it-goes
Hilfeseite URL https://github.com/zach-adams/so-it-goes
URL der Datenschutzrichtlinien-Seite https://zach-adams.com/privacy-policy/chrome-extensions.txt
Unterstützte Sprachen 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"
        }
    ]
}