Quality of Life

Just does some cool stuff

Quality of Life là gì?

Quality of Life là một tiện ích mở rộng Chrome được phát triển bởi Llama Dev, và tính năng chính của nó là "Just does some cool stuff".

Ả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 Quality of Life

Tải xuống các tệp mở rộng Quality of Life 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

                        This extension adds many "quality of life" additions to various websites. 

Changes include dark mode for Google Products (docs, presentations, sheets), popup buttons for Schoology, and an easily accessible popup window for quick accessibility. The popup window comes default with Desmos, Wolfram Alpha, and PTable.                    

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

Tên Quality of Life Quality of Life
ID bllbmidfajngmglobdbmhkcenfmlaafe
URL Chính Thức https://chromewebstore.google.com/detail/quality-of-life/bllbmidfajngmglobdbmhkcenfmlaafe
Mô tả Just does some cool stuff
Kích Thước Tệp 26.75 KB
Số Lần Cài Đặt 31
Phiên Bản Hiện Tại 2.12
Cập Nhật Lần Cuối 2023-10-25
Ngày Phát Hành 2023-03-22
Đánh Giá 5.00/5 Tổng số 5 Đánh Giá
Nhà Phát Triển Llama Dev
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Quality of Life",
    "author": "Llama Dev",
    "description": "Just does some cool stuff",
    "version": "2.12",
    "manifest_version": 3,
    "permissions": [
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.schoology.com\/*"
            ],
            "js": [
                "schoology.js"
            ]
        },
        {
            "matches": [
                "*:\/\/*.codingbat.com\/*"
            ],
            "js": [
                "codingbat.js"
            ]
        },
        {
            "matches": [
                "*:\/\/docs.google.com\/document\/*",
                "*:\/\/docs.google.com\/presentation\/*",
                "*:\/\/docs.google.com\/spreadsheets\/*"
            ],
            "js": [
                "docs.js"
            ],
            "run_at": "document_start",
            "all_frames": true
        },
        {
            "matches": [
                "*:\/\/docs.google.com\/document\/*",
                "*:\/\/docs.google.com\/presentation\/*",
                "*:\/\/docs.google.com\/spreadsheets\/*"
            ],
            "js": [
                "docs_preview.js"
            ]
        },
        {
            "matches": [
                "*:\/\/drive.google.com\/*"
            ],
            "js": [
                "drive.js"
            ]
        },
        {
            "matches": [
                "*:\/\/my.noodletools.com\/*"
            ],
            "js": [
                "noodletools.js"
            ]
        },
        {
            "matches": [
                "*:\/\/*.wixsite.com\/*"
            ],
            "js": [
                "wix.js"
            ]
        },
        {
            "matches": [
                "*:\/\/*.quizlet.com\/explanations\/*"
            ],
            "js": [
                "quizlet.js"
            ]
        }
    ],
    "action": {
        "default_popup": "popup\/index.html",
        "default_icon": {
            "32": "\/images\/logo.png"
        }
    },
    "icons": {
        "32": "\/images\/logo.png"
    },
    "web_accessible_resources": [
        {
            "matches": [
                "*:\/\/*.codingbat.com\/*"
            ],
            "resources": [
                "images\/codingbat\/*.png"
            ]
        },
        {
            "matches": [
                "*:\/\/my.noodletools.com\/*"
            ],
            "resources": [
                "noodletools_script.js"
            ]
        }
    ]
}