Quality of Life
Just does some cool stuff
Quality of Life क्या है?
Quality of Life Llama Dev द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Just does some cool stuff"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Quality of Life एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
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 |
आधिकारिक URL | 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" ] } ] } |