Enhanced Planner for Scoro

Makes Scoro's Planner prettier and easier to navigate

What is Enhanced Planner for Scoro?

Enhanced Planner for Scoro is a Chrome extension developed by abiasi.dev, and its main feature is "Makes Scoro's Planner prettier and easier to navigate".

Extension Screenshots

screenshot

Download Enhanced Planner for Scoro Extension CRX File

Download Enhanced Planner for Scoro extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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                    

Extension Basic Information

Name Enhanced Planner for Scoro Enhanced Planner for Scoro
ID boaooihppnjcidgmdifhefpllbbnikdg
Official URL https://chromewebstore.google.com/detail/enhanced-planner-for-scor/boaooihppnjcidgmdifhefpllbbnikdg
Description Makes Scoro's Planner prettier and easier to navigate
File Size 1.99 MB
Installation Count 58
Current Version 7.1
Last Updated 2023-10-11
Publish Date 2022-09-15
Rating 5.00/5 Total 2 Ratings
Developer abiasi.dev
Email [email protected]
Payment Type free
Supported Languages 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": [
                ""
            ]
        }
    ]
}