Sigarra Dark Theme

Makes FEUP's Sigarra dark

Sigarra Dark Theme란 무엇입니까?

Sigarra Dark Theme은(는) c0brastrigger에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Makes FEUP's Sigarra dark"입니다.

확장 프로그램 스크린샷

screenshot

Sigarra Dark Theme 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        All the code is available on GitHub: https://github.com/c0bras/Sigarra-Dark-Theme
This extension is open-source, so feel free to use or edit it if you want.

This chrome extension turns FEUP's Sigarra darker, so that it's easier on the eye.
Feel free to contribute by letting me know if you found a bug, or if you have an idea that would be good for the extension.

Changelog:
17.10.2017: v1.4 (optimized)
- Seriously optimized the extension

20.02.2017: v1.3.1
- Fixed wrong color contrast, in Sigarra's cookie alert on the top

5.02.2017: v1.3
- Added better contrast to student name, on the upper panel

4.02.2017: v1.2 (later update)
- Fixed bug at the cantina page
- Code was optimized so it uses less resources

4.02.2017: v1.1
- Fixed white flickering
- Project is now available on GitHub

3.02.2017: v1.0
- The extension was published                    

확장 프로그램 기본 정보

이름 Sigarra Dark Theme Sigarra Dark Theme
ID lcmklemnoccdfakiabobhgjpeoeoboil
공식 URL https://chromewebstore.google.com/detail/sigarra-dark-theme/lcmklemnoccdfakiabobhgjpeoeoboil
설명 Makes FEUP's Sigarra dark
파일 크기 10.03 KB
설치 횟수 13
현재 버전 1.4
최근 업데이트 2017-10-17
출시 날짜 2017-10-17
평점 5.00/5 총 3 개의 평점
개발자 c0brastrigger
이메일 [email protected]
결제 유형 free
지원되는 언어 pt-PT
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Sigarra Dark Theme",
    "description": "Makes FEUP's Sigarra dark",
    "version": "1.4",
    "permissions": [
        "activeTab"
    ],
    "icons": {
        "128": "logo_preto.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/sigarra.up.pt\/feup\/*"
            ],
            "js": [
                "background.js"
            ],
            "run_at": "document_start"
        }
    ],
    "browser_action": {
        "default_title": "Sigarra Dark Theme",
        "default_icon": "logo_preto.png"
    },
    "manifest_version": 2,
    "web_accessible_resources": [
        "css_dark.css"
    ]
}