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.

So It Goes là gì?

So It Goes là một tiện ích mở rộng Chrome được phát triển bởi Zach Adams, và tính năng chính của nó là "Adds 'So it goes' where appropriate to remind you that death is just a bad condition at a particular moment in one's existence.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng So It Goes

Tải xuống các tệp mở rộng So It Goes dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên So It Goes So It Goes
ID lbjgfodghkchhcpaeiiabadcllbommcl
URL Chính Thức https://chromewebstore.google.com/detail/so-it-goes/lbjgfodghkchhcpaeiiabadcllbommcl
Mô tả Adds 'So it goes' where appropriate to remind you that death is just a bad condition at a particular moment in one's existence.
Kích Thước Tệp 10.26 KB
Số Lần Cài Đặt 44
Phiên Bản Hiện Tại 1.3.5
Cập Nhật Lần Cuối 2020-02-21
Ngày Phát Hành 2020-02-21
Đánh Giá 4.71/5 Tổng số 7 Đánh Giá
Nhà Phát Triển Zach Adams
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/zach-adams/so-it-goes
URL Trang Trợ Giúp https://github.com/zach-adams/so-it-goes
URL Trang Chính Sách Bảo Mật https://zach-adams.com/privacy-policy/chrome-extensions.txt
Ngôn Ngữ Được Hỗ Trợ 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"
        }
    ]
}