Quality of Life
Just does some cool stuff
什麼是Quality of Life?
Quality of Life是由Llama Dev開發的Chrome擴展程式,該擴展的主要功能是“Just does some cool stuff”。
擴展截圖
下載Quality of Life擴展crx文件
下載Quality of Life擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
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.
擴展基本資訊
名稱 | Quality of Life |
ID | bllbmidfajngmglobdbmhkcenfmlaafe |
官方網址 | https://chromewebstore.google.com/detail/quality-of-life/bllbmidfajngmglobdbmhkcenfmlaafe |
簡介 | Just does some cool stuff |
檔案大小 | 26.75 KB |
安裝次數 | 31 |
目前版本 | 2.12 |
更新時間 | 2023-10-25 |
上架時間 | 2023-03-22 |
評分 | 5.00/5 共 5 次評分 |
開發者 | Llama Dev |
電子郵箱 | [email protected] |
付費類型 | free |
支援的語言 | 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" ] } ] } |