Quality of Life

Just does some cool stuff

Apa itu Quality of Life?

Quality of Life adalah ekstensi Chrome yang dikembangkan oleh Llama Dev, dan fitur utamanya adalah "Just does some cool stuff".

Screenshot Ekstensi

screenshot
screenshot
screenshot

Unduh Berkas CRX Ekstensi Quality of Life

Unduh file ekstensi Quality of Life dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        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.                    

Informasi Dasar Ekstensi

Nama Quality of Life Quality of Life
ID bllbmidfajngmglobdbmhkcenfmlaafe
URL Resmi https://chromewebstore.google.com/detail/quality-of-life/bllbmidfajngmglobdbmhkcenfmlaafe
Deskripsi Just does some cool stuff
Ukuran File 26.75 KB
Jumlah Instalasi 31
Versi Saat Ini 2.12
Terakhir Diperbarui 2023-10-25
Tanggal Publikasi 2023-03-22
Penilaian 5.00/5 Total 5 Penilaian
Pengembang Llama Dev
Email [email protected]
Tipe Pembayaran free
Bahasa yang Didukung 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"
            ]
        }
    ]
}