Enhanced Planner for Scoro

Makes Scoro's Planner prettier and easier to navigate

Enhanced Planner for Scoro란 무엇입니까?

Enhanced Planner for Scoro은(는) abiasi.dev에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Makes Scoro's Planner prettier and easier to navigate"입니다.

확장 프로그램 스크린샷

screenshot

Enhanced Planner for Scoro 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        The extension improves the navigation of tasks in your planner  by enabling the following features:
- FIXED TASKS HEIGHT: All task will have the same height so you won't need to mouse-over each to consult their title, project, etc.
- CROSSED OUT TASKS: Changes text colour and adds a strike through line on tasks that have been marked as done
- EVENTS TASKS FORMATTING: Changes text colour to event tasks
- IMPROVED NOTIFICATIONS EXPERIENCE: Highlights unread notifications, making it easier to spot them                    

확장 프로그램 기본 정보

이름 Enhanced Planner for Scoro Enhanced Planner for Scoro
ID boaooihppnjcidgmdifhefpllbbnikdg
공식 URL https://chromewebstore.google.com/detail/enhanced-planner-for-scor/boaooihppnjcidgmdifhefpllbbnikdg
설명 Makes Scoro's Planner prettier and easier to navigate
파일 크기 1.99 MB
설치 횟수 58
현재 버전 7.1
최근 업데이트 2023-10-11
출시 날짜 2022-09-15
평점 5.00/5 총 2 개의 평점
개발자 abiasi.dev
이메일 [email protected]
결제 유형 free
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Enhanced Planner for Scoro",
    "version": "7.1",
    "description": "Makes Scoro's Planner prettier and easier to navigate",
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.scoro.com\/*"
            ],
            "all_frames": true,
            "js": [
                "content.js"
            ],
            "runAt": "document_start"
        }
    ],
    "action": {
        "default_icon": {
            "16": "\/images\/Scoro-16.png",
            "32": "\/images\/Scoro-32.png",
            "48": "\/images\/Scoro-48.png",
            "128": "\/images\/Scoro-128.png"
        },
        "default_popup": "popup.html"
    },
    "permissions": [
        "storage",
        "tabs",
        "scripting"
    ],
    "host_permissions": [
        "*:\/\/*.scoro.com\/*"
    ],
    "icons": {
        "16": "\/images\/Scoro-16.png",
        "32": "\/images\/Scoro-32.png",
        "48": "\/images\/Scoro-48.png",
        "128": "\/images\/Scoro-128.png"
    },
    "web_accessible_resources": [
        {
            "resources": [
                "sidebar.html"
            ],
            "matches": [
                ""
            ]
        }
    ]
}