Shopify Code Editor Dark Mode
Change your shopify code editor to dark mode
What is Shopify Code Editor Dark Mode?
Shopify Code Editor Dark Mode is a Chrome extension developed by nziranzizadaniel, and its main feature is "Change your shopify code editor to dark mode".
Extension Screenshots
Download Shopify Code Editor Dark Mode Extension CRX File
Download Shopify Code Editor Dark Mode extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
Change your shopify code editor to dark mode
Extension Basic Information
Name | Shopify Code Editor Dark Mode |
ID | bohcnjaooogpmbhofococpmlplpkechb |
Official URL | https://chromewebstore.google.com/detail/shopify-code-editor-dark/bohcnjaooogpmbhofococpmlplpkechb |
Description | Change your shopify code editor to dark mode |
File Size | 22.31 KB |
Installation Count | 97 |
Current Version | 1.1 |
Last Updated | 2020-08-19 |
Publish Date | 2020-08-18 |
Rating | 2.00/5 Total 3 Ratings |
Developer | nziranzizadaniel |
[email protected] | |
Payment Type | free |
Supported Languages | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Shopify Code Editor Dark Mode", "version": "1.1", "manifest_version": 2, "description": "Change your shopify code editor to dark mode", "content_scripts": [ { "matches": [ "https:\/\/*.myshopify.com\/admin\/themes\/*", "https:\/\/*.myshopify.com\/admin\/themes?channel=true" ], "js": [ "content.js" ] } ], "browser_action": { "default_popup": "popup.html", "default_title": "Shopify code editor Dark Mode", "default_icon": "icon.png" }, "permissions": [ "storage" ], "icons": { "16": "icon16.png", "48": "icon48.png", "128": "icon128.png" } } |