Marktone

Change a Rich Text input area on kintone https://kintone.cybozu.co.jp/ to the Markdown input area.

Что такое Marktone?

Marktone - это расширение Chrome, разработанное ganta, и его основная функция - "Change a Rich Text input area on kintone https://kintone.cybozu.co.jp/ to the Markdown input area.".

Снимки экрана расширения

screenshot

Скачать файл CRX расширения Marktone

Скачайте файлы расширений Marktone в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        You can use Markdown with people, spaces, and record comments on kintone.

This extension is my own personal work and does not have any relationship with Cybozu, Inc. or any other organization which I belong to.                    

Основная информация о расширении

Название Marktone Marktone
ID mmplkelbljbdkdcagoffbcbaeaccedlk
Официальный URL https://chromewebstore.google.com/detail/marktone/mmplkelbljbdkdcagoffbcbaeaccedlk
Описание Change a Rich Text input area on kintone https://kintone.cybozu.co.jp/ to the Markdown input area.
Размер файла 1.94 MB
Количество установок 667
Текущая Версия 1.7.0
Последнее Обновление 2022-11-26
Дата публикации 2020-05-25
Рейтинг 5.00/5 Всего 1 оценок
Разработчик ganta
Электронная почта [email protected]
Тип оплаты free
Официальный сайт расширения https://github.com/ganta/marktone
URL страницы помощи https://github.com/ganta/marktone/issues
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Marktone",
    "version": "1.7.0",
    "description": "Change a Rich Text input area on kintone https:\/\/kintone.cybozu.co.jp\/ to the Markdown input area.",
    "homepage_url": "https:\/\/github.com\/ganta\/marktone",
    "icons": {
        "16": "icons\/icon16.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "permissions": [
        "storage"
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "js\/initialization.js"
            ],
            "matches": [
                ""
            ]
        }
    ],
    "background": {
        "service_worker": "js\/background.js"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.cybozu.com\/k\/*",
                "https:\/\/*.cybozu-dev.com\/k\/*",
                "https:\/\/*.kintone.com\/k\/*",
                "https:\/\/*.kintone-dev.com\/k\/*",
                "https:\/\/*.cybozu.cn\/k\/*",
                "https:\/\/*.cybozu-dev.cn\/k\/*"
            ],
            "js": [
                "js\/content.js"
            ],
            "css": [
                "css\/content.css"
            ],
            "all_frames": true
        }
    ],
    "action": {
        "default_icon": {
            "16": "icons\/icon16.png",
            "48": "icons\/icon48.png",
            "128": "icons\/icon128.png"
        },
        "default_title": "Marktone"
    }
}