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 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Turn your Shopify admin dashboard dark and reduce eye strain."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Dark Mode for Shopify एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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 |
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" } } |