PCO Dark Mode

Introduces a "Dark Mode" theme into planning center services.

PCO Dark Modeคืออะไร?

PCO Dark Mode เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Jacob Martin และคุณลักษณะหลักของมันคือ "Introduces a "Dark Mode" theme into planning center services."

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

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย PCO Dark Mode

ดาวน์โหลดไฟล์ส่วนขยาย PCO Dark Mode ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        UPDATED 2/30/24

Currently working on fixing issues caused by an update to PCO Services. v1.4.8 fixes an issue when viewing service times in the pending serve requests section.

Description:
Tired of the glaring brightness? We've got you covered. Seamlessly switch to a sleek and elegant dark theme that's easy on the eyes and designed to enhance your workflow. 

Features:
- Embrace the dark side: Transform the entire Planning Center Online Services interface into a stylish dark theme, reducing eye strain during extended usage.

- Complete integration: Our extension supports nearly every aspect of Services, enhancing your experience without compromising functionality.

- Ongoing improvements: While we're actively working on perfecting the extension, a few minor bugs might appear. Your feedback is invaluable in helping us create a seamless experience for all users.

Target Audience:
Designed for anyone seeking an improved Planning Center Online Services experience beyond the standard interface.

Please Note:
This extension is currently in active development, and as such, occasional bugs may arise. Your patience and input are greatly appreciated as we work to provide you with the best possible experience. If you'd like to stay up to date with the latest updates and fixes, check out our GitHub repository: https://github.com/jacobmrtn/pco-dark-mode-updates                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ PCO Dark Mode PCO Dark Mode
ID nppgjechfhmnepbjigflblopgcpecifm
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/pco-dark-mode/nppgjechfhmnepbjigflblopgcpecifm
คำอธิบาย Introduces a "Dark Mode" theme into planning center services.
ขนาดไฟล์ 51.62 KB
จำนวนการติดตั้ง 356
เวอร์ชันปัจจุบัน 1.4.8
อัปเดตครั้งล่าสุด 2024-02-28
วันที่เผยแพร่ 2023-06-01
คะแนน 5.00/5 รวมทั้งหมด 6 คะแนน
ผู้พัฒนา Jacob Martin
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://jacobm.dev/pco
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "PCO Dark Mode",
    "description": "Introduces a \"Dark Mode\" theme into planning center services.",
    "version": "1.4.8",
    "version_name": "1.4.8",
    "icons": {
        "16": "images\/icon-128.png",
        "32": "images\/icon-32.png",
        "48": "images\/icon-48.png",
        "128": "images\/icon-128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/services.planningcenteronline.com\/*",
                "https:\/\/planningcenteronline.com\/*"
            ],
            "js": [
                "content_script.js"
            ],
            "run_at": "document_end"
        }
    ],
    "background": {
        "service_worker": "background.js"
    },
    "action": {
        "default_icon": {
            "16": "images\/icon-16.png",
            "32": "images\/icon-32.png",
            "48": "images\/icon-48.png",
            "128": "images\/icon-128.png"
        },
        "default_popup": "popup.html"
    },
    "permissions": [
        "activeTab",
        "scripting",
        "storage"
    ],
    "host_permissions": [
        "https:\/\/services.planningcenteronline.com\/*",
        "https:\/\/planningcenteronline.com\/*"
    ]
}