AISD Tweaks
Additional features for AISD internal apps
AISD Tweaks क्या है?
AISD Tweaks MarioCMFlys द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Additional features for AISD internal apps"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में AISD Tweaks एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
This extension provides extra capabilities and features from within AISD internal applications. Features: - Adds night mode for assignments and course pages - Enables you to list other users in your courses - Migrates common popups to tabs for ease of navigation - Adds quick shortcuts to Portal apps - Colors failing grades bright red in the gradebook - Adds quick navigation and search in the address bar - Enables quicker access to assignment information - Provides notifications for new inbox messages - Removes banner on Skyward login page - Adds right-click menu to Canvas allowing for quick course navigation - Allow removal of course backgrounds in Canvas Notice: The AISD Tweaks project is not affiliated with, nor endorsed by AISD, and is maintained by independent contributors.
एक्सटेंशन की मूल जानकारी
नाम | AISD Tweaks |
ID | hlcfmalncbngohggbmkkhkebahmgcbml |
आधिकारिक URL | https://chromewebstore.google.com/detail/aisd-tweaks/hlcfmalncbngohggbmkkhkebahmgcbml |
विवरण | Additional features for AISD internal apps |
फ़ाइल का आकार | 204 KB |
स्थापना संख्या | 20 |
वर्तमान संस्करण | 1.8.4 |
अंतिम अपडेट | 2020-10-10 |
प्रकाशन तिथि | 2020-04-07 |
रेटिंग | 5.00/5 कुल 4 रेटिंग्स |
डेवलपर | MarioCMFlys |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
समर्थित भाषाएँ | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "AISD Tweaks", "author": "MarioCMFlys", "version": "1.8.4", "description": "Additional features for AISD internal apps", "applications": { "gecko": { "id": "[email protected]", "update_url": "https:\/\/cwu.mariocmflys.tk\/aisd_tweaks_versions.json" } }, "permissions": [ "storage", "activeTab", "notifications", "alarms", "contextMenus", "*:\/\/canvas.allenisd.org\/*" ], "icons": { "16": "images\/icon16.png", "32": "images\/icon32.png", "48": "images\/icon48.png", "128": "images\/icon128.png" }, "background": { "scripts": [ "background.js" ], "persistent": true }, "browser_action": { "default_popup": "menu\/popup.html", "default_icon": { "16": "images\/icon16.png", "32": "images\/icon32.png", "48": "images\/icon48.png", "128": "images\/icon128.png" }, "browser_style": true, "show_matches": [ "*:\/\/*\/*" ] }, "omnibox": { "keyword": "aisd" }, "content_scripts": [ { "css": [ "cscripts\/canvas.css" ], "js": [ "cscripts\/canvas.js" ], "matches": [ "https:\/\/canvas.allenisd.org\/*" ], "run_at": "document_start" }, { "css": [], "js": [ "cscripts\/portal.js" ], "matches": [ "https:\/\/portal.allenisd.org\/*" ], "run_at": "document_start" }, { "css": [], "js": [ "cscripts\/skyward.js" ], "matches": [ "https:\/\/skyward.allenisd.org\/*" ], "run_at": "document_start" } ], "web_accessible_resources": [ "cscripts\/canvasdark.css", "cscripts\/apg-dark.css", "images\/*.png" ] } |