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.
Apa itu Bubble.io: Editor Dark Mode?
Bubble.io: Editor Dark Mode adalah ekstensi Chrome yang dikembangkan oleh danbernal.cl, dan fitur utamanya adalah "Now apply the dark mode to the bubble editor, take care of your eyes. Just click on extension icon to toggle.".
Screenshot Ekstensi
Unduh Berkas CRX Ekstensi Bubble.io: Editor Dark Mode
Unduh file ekstensi Bubble.io: Editor Dark Mode dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.
Petunjuk Penggunaan Ekstensi
Install this extension to enable dark mode in the bubble.io editor
Informasi Dasar Ekstensi
Nama | Bubble.io: Editor Dark Mode |
ID | infkadcekhdmdjeiapipcbanolpmlpln |
URL Resmi | https://chromewebstore.google.com/detail/bubbleio-editor-dark-mode/infkadcekhdmdjeiapipcbanolpmlpln |
Deskripsi | Now apply the dark mode to the bubble editor, take care of your eyes. Just click on extension icon to toggle. |
Ukuran File | 12.53 KB |
Jumlah Instalasi | 440 |
Versi Saat Ini | 1.0.0 |
Terakhir Diperbarui | 2021-06-17 |
Tanggal Publikasi | 2021-06-17 |
Penilaian | 4.00/5 Total 3 Penilaian |
Pengembang | danbernal.cl |
[email protected] | |
Tipe Pembayaran | free |
URL Halaman Bantuan | https://www.danbernal.cl |
URL Halaman Kebijakan Privasi | https://danbernal.cl/private-policy |
Bahasa yang Didukung | 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" } } |