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文件

下載Dark Mode for Shopify擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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
官方網址 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"
    }
}