Marktone

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

Was ist Marktone?

Marktone ist eine Chrome-Erweiterung, die von ganta entwickelt wurde, und ihr Hauptmerkmal ist "Change a Rich Text input area on kintone https://kintone.cybozu.co.jp/ to the Markdown input area.".

Erweiterungsscreenshots

screenshot

Marktone-Erweiterungs-CRX-Datei herunterladen

Laden Sie Marktone-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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.                    

Grundlegende Informationen zur Erweiterung

Name Marktone Marktone
ID mmplkelbljbdkdcagoffbcbaeaccedlk
Offizielle URL https://chromewebstore.google.com/detail/marktone/mmplkelbljbdkdcagoffbcbaeaccedlk
Beschreibung Change a Rich Text input area on kintone https://kintone.cybozu.co.jp/ to the Markdown input area.
Dateigröße 1.94 MB
Installationsanzahl 667
Aktuelle Version 1.7.0
Letztes Update 2022-11-26
Veröffentlichungsdatum 2020-05-25
Bewertung 5.00/5 Insgesamt 1 Bewertungen
Entwickler ganta
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://github.com/ganta/marktone
Hilfeseite URL https://github.com/ganta/marktone/issues
Unterstützte Sprachen 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"
    }
}