Marktone

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

O que é Marktone?

Marktone é uma extensão do Chrome desenvolvida por ganta, e sua principal característica é "Change a Rich Text input area on kintone https://kintone.cybozu.co.jp/ to the Markdown input area.".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão Marktone

Baixe arquivos de extensão Marktone no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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.                    

Informações Básicas da Extensão

Nome Marktone Marktone
ID mmplkelbljbdkdcagoffbcbaeaccedlk
URL Oficial https://chromewebstore.google.com/detail/marktone/mmplkelbljbdkdcagoffbcbaeaccedlk
Descrição Change a Rich Text input area on kintone https://kintone.cybozu.co.jp/ to the Markdown input area.
Tamanho do Arquivo 1.94 MB
Contagem de Instalações 667
Versão Atual 1.7.0
Última Atualização 2022-11-26
Data de Publicação 2020-05-25
Classificação 5.00/5 Total de 1 Avaliações
Desenvolvedor ganta
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://github.com/ganta/marktone
URL da Página de Ajuda https://github.com/ganta/marktone/issues
Idiomas Suportados 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"
    }
}