Shopify Code Editor Dark Mode
Change your shopify code editor to dark mode
Vad är Shopify Code Editor Dark Mode?
Shopify Code Editor Dark Mode är en Chrome-tillägg utvecklad av nziranzizadaniel, och dess huvudfunktion är "Change your shopify code editor to dark mode".
Tilläggsskärmbilder
Ladda ner Shopify Code Editor Dark Mode-förlängningens CRX-fil
Ladda ner Shopify Code Editor Dark Mode-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
Change your shopify code editor to dark mode Grundläggande Information om Tillägg
| Namn | |
| ID | bohcnjaooogpmbhofococpmlplpkechb |
| Officiell webbadress | https://chromewebstore.google.com/detail/shopify-code-editor-dark/bohcnjaooogpmbhofococpmlplpkechb |
| Beskrivning | Change your shopify code editor to dark mode |
| Filstorlek | 22.31 KB |
| Antal Installationer | 97 |
| Aktuell Version | 1.1 |
| Senast Uppdaterad | 2020-08-19 |
| Publiceringsdatum | 2020-08-18 |
| Betyg | 2.00/5 Totalt 3 Betyg |
| Utvecklare | nziranzizadaniel |
| E-post | [email protected] |
| Betalningssätt | free |
| Stödda Språk | 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"
}
} | |