Bubble.io: Editor Dark Mode
Now apply the dark mode to the bubble editor, take care of your eyes. Just click on extension icon to toggle.
Vad är Bubble.io: Editor Dark Mode?
Bubble.io: Editor Dark Mode är en Chrome-tillägg utvecklad av danbernal.cl, och dess huvudfunktion är "Now apply the dark mode to the bubble editor, take care of your eyes. Just click on extension icon to toggle.".
Tilläggsskärmbilder
Ladda ner Bubble.io: Editor Dark Mode-förlängningens CRX-fil
Ladda ner Bubble.io: 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
Install this extension to enable dark mode in the bubble.io editor
Grundläggande Information om Tillägg
Namn | Bubble.io: Editor Dark Mode |
ID | infkadcekhdmdjeiapipcbanolpmlpln |
Officiell webbadress | https://chromewebstore.google.com/detail/bubbleio-editor-dark-mode/infkadcekhdmdjeiapipcbanolpmlpln |
Beskrivning | Now apply the dark mode to the bubble editor, take care of your eyes. Just click on extension icon to toggle. |
Filstorlek | 12.53 KB |
Antal Installationer | 440 |
Aktuell Version | 1.0.0 |
Senast Uppdaterad | 2021-06-17 |
Publiceringsdatum | 2021-06-17 |
Betyg | 4.00/5 Totalt 3 Betyg |
Utvecklare | danbernal.cl |
E-post | [email protected] |
Betalningssätt | free |
Hjälpsida URL | https://www.danbernal.cl |
URL till Sekretesspolicy Sidan | https://danbernal.cl/private-policy |
Stödda Språk | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Bubble.io: Editor Dark Mode", "description": "Now apply the dark mode to the bubble editor, take care of your eyes. Just click on extension icon to toggle.", "version": "1.0.0", "content_scripts": [ { "matches": [ "https:\/\/*.bubble.io\/*" ], "css": [ "estilo.css" ] } ], "background": { "scripts": [ "background.js" ] }, "browser_action": { "default_icon": "images\/darkMode128.png" }, "icons": { "16": "images\/darkMode16.png", "32": "images\/darkMode32.png", "48": "images\/darkMode48.png", "128": "images\/darkMode128.png" } } |