Dark Mode for Shopify

Turn your Shopify admin dashboard dark and reduce eye strain.

Dark Mode for Shopify란 무엇입니까?

Dark Mode for Shopify은(는) https://www.rvere.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Turn your Shopify admin dashboard dark and reduce eye strain."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot
screenshot

Dark Mode for Shopify 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        Do your eyes hurt when you're working on your Shopify store late at night?

Give yourself a break and turn the Shopify admin dark. 

Editing products, fulfilling orders or checking your analytics?

Do it all with rich black backgrounds for every page on your dashboard.

Works with every page on your admin, as well as the login pages. 

Please note, this is not a dark mode for your shop theme, but for your Shopify admin.                    

확장 프로그램 기본 정보

이름 Dark Mode for Shopify Dark Mode for Shopify
ID hfoeimdgmlholdmiodhkeohhnjjkddhp
공식 URL https://chromewebstore.google.com/detail/dark-mode-for-shopify/hfoeimdgmlholdmiodhkeohhnjjkddhp
설명 Turn your Shopify admin dashboard dark and reduce eye strain.
파일 크기 632 KB
설치 횟수 2,183
현재 버전 0.1.0
최근 업데이트 2023-05-23
출시 날짜 2020-05-25
평점 3.43/5 총 14 개의 평점
개발자 https://www.rvere.com
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://www.rvere.com/dark-mode-for-shopify
도움말 페이지 URL https://www.rvere.com/dark-mode-for-shopify
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Dark Mode for Shopify",
    "short_name": "sdm",
    "description": "Turn your Shopify admin dashboard dark and reduce eye strain.",
    "version": "0.1.0",
    "author": "Rvere",
    "homepage_url": "https:\/\/www.rvere.com\/",
    "web_accessible_resources": [
        {
            "resources": [
                "css\/*.css"
            ],
            "matches": [
                "https:\/\/admin.shopify.com\/*",
                "https:\/\/*.myshopify.com\/*",
                "https:\/\/accounts.shopify.com\/*",
                "https:\/\/app.shopify.com\/*"
            ]
        }
    ],
    "options_page": "options.html",
    "icons": {
        "16": "img\/shopify-light-mode-icon-16.png",
        "48": "img\/shopify-light-mode-icon-48.png",
        "128": "img\/shopify-light-mode-icon-128.png"
    },
    "action": {
        "default_icon": "img\/shopify-light-mode-icon.png",
        "default_title": "Dark Mode for Shopify",
        "default_popup": "popup.html"
    },
    "background": {
        "service_worker": "js\/background.js"
    },
    "content_scripts": [
        {
            "all_frames": true,
            "match_about_blank": true,
            "matches": [
                "https:\/\/admin.shopify.com\/*",
                "https:\/\/*.myshopify.com\/admin*",
                "https:\/\/accounts.shopify.com\/*",
                "https:\/\/app.shopify.com\/services\/login\/identity_callback*"
            ],
            "run_at": "document_start",
            "js": [
                "js\/functions.js",
                "js\/inject.js"
            ]
        }
    ],
    "permissions": [
        "storage"
    ],
    "content_security_policy": {
        "script-src": "self",
        "object-src": "self"
    }
}