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
公式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
Eメール [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": [
                ""
            ]
        }
    ]
}