Marktone

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

Cos'è Marktone?

Marktone è un'estensione di Chrome sviluppata da ganta, e la sua funzione principale è "Change a Rich Text input area on kintone https://kintone.cybozu.co.jp/ to the Markdown input area.".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Marktone

Scarica i file di estensione Marktone in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome Marktone Marktone
ID mmplkelbljbdkdcagoffbcbaeaccedlk
URL Ufficiale https://chromewebstore.google.com/detail/marktone/mmplkelbljbdkdcagoffbcbaeaccedlk
Descrizione Change a Rich Text input area on kintone https://kintone.cybozu.co.jp/ to the Markdown input area.
Dimensione del File 1.94 MB
Conteggio Installazioni 667
Versione Corrente 1.7.0
Ultimo Aggiornamento 2022-11-26
Data di Pubblicazione 2020-05-25
Valutazione 5.00/5 Totale 1 Valutazioni
Sviluppatore ganta
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/ganta/marktone
URL della Pagina di Aiuto https://github.com/ganta/marktone/issues
Lingue Supportate 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"
    }
}