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文件

下載Enhanced Planner for Scoro擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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
官方網址 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": [
                ""
            ]
        }
    ]
}