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.
Что такое Bubble.io: Editor Dark Mode?
Bubble.io: Editor Dark Mode - это расширение Chrome, разработанное danbernal.cl, и его основная функция - "Now apply the dark mode to the bubble editor, take care of your eyes. Just click on extension icon to toggle.".
Снимки экрана расширения
Скачать файл CRX расширения Bubble.io: Editor Dark Mode
Скачайте файлы расширений Bubble.io: Editor Dark Mode в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
                        Install this extension to enable dark mode in the bubble.io editor                     Основная информация о расширении
| Название |  | 
| ID | infkadcekhdmdjeiapipcbanolpmlpln | 
| Официальный URL | https://chromewebstore.google.com/detail/bubbleio-editor-dark-mode/infkadcekhdmdjeiapipcbanolpmlpln | 
| Описание | Now apply the dark mode to the bubble editor, take care of your eyes. Just click on extension icon to toggle. | 
| Размер файла | 12.53 KB | 
| Количество установок | 440 | 
| Текущая Версия | 1.0.0 | 
| Последнее Обновление | 2021-06-17 | 
| Дата публикации | 2021-06-17 | 
| Рейтинг | 4.00/5 Всего 3 оценок | 
| Разработчик | danbernal.cl | 
| Электронная почта | [email protected] | 
| Тип оплаты | free | 
| URL страницы помощи | https://www.danbernal.cl | 
| URL страницы политики конфиденциальности | https://danbernal.cl/private-policy | 
| Поддерживаемые языки | 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"
    }
} | |