AISD Tweaks

Additional features for AISD internal apps

AISD Tweaks란 무엇입니까?

AISD Tweaks은(는) MarioCMFlys에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Additional features for AISD internal apps"입니다.

확장 프로그램 스크린샷

screenshot

AISD Tweaks 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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 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"
    ]
}