Enhanced Planner for Scoro

Makes Scoro's Planner prettier and easier to navigate

Enhanced Planner for Scoroคืออะไร?

Enhanced Planner for Scoro เป็นส่วนขยายของ Chrome ที่พัฒนาโดย abiasi.dev และคุณลักษณะหลักของมันคือ "Makes Scoro's Planner prettier and easier to navigate"

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Enhanced Planner for Scoro

ดาวน์โหลดไฟล์ส่วนขยาย 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
อีเมล [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": [
                ""
            ]
        }
    ]
}