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.

Vad är So It Goes?

So It Goes är en Chrome-tillägg utvecklad av Zach Adams, och dess huvudfunktion är "Adds 'So it goes' where appropriate to remind you that death is just a bad condition at a particular moment in one's existence.".

Tilläggsskärmbilder

screenshot
screenshot
screenshot

Ladda ner So It Goes-förlängningens CRX-fil

Ladda ner So It Goes-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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äggande Information om Tillägg

Namn So It Goes So It Goes
ID lbjgfodghkchhcpaeiiabadcllbommcl
Officiell webbadress https://chromewebstore.google.com/detail/so-it-goes/lbjgfodghkchhcpaeiiabadcllbommcl
Beskrivning Adds 'So it goes' where appropriate to remind you that death is just a bad condition at a particular moment in one's existence.
Filstorlek 10.26 KB
Antal Installationer 44
Aktuell Version 1.3.5
Senast Uppdaterad 2020-02-21
Publiceringsdatum 2020-02-21
Betyg 4.71/5 Totalt 7 Betyg
Utvecklare Zach Adams
E-post [email protected]
Betalningssätt free
Tilläggswebbplats https://github.com/zach-adams/so-it-goes
Hjälpsida URL https://github.com/zach-adams/so-it-goes
URL till Sekretesspolicy Sidan https://zach-adams.com/privacy-policy/chrome-extensions.txt
Stödda Språk 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"
        }
    ]
}