Marktone

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

Vad är Marktone?

Marktone är en Chrome-tillägg utvecklad av ganta, och dess huvudfunktion är "Change a Rich Text input area on kintone https://kintone.cybozu.co.jp/ to the Markdown input area.".

Tilläggsskärmbilder

screenshot

Ladda ner Marktone-förlängningens CRX-fil

Ladda ner Marktone-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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.                    

Grundläggande Information om Tillägg

Namn Marktone Marktone
ID mmplkelbljbdkdcagoffbcbaeaccedlk
Officiell webbadress https://chromewebstore.google.com/detail/marktone/mmplkelbljbdkdcagoffbcbaeaccedlk
Beskrivning Change a Rich Text input area on kintone https://kintone.cybozu.co.jp/ to the Markdown input area.
Filstorlek 1.94 MB
Antal Installationer 667
Aktuell Version 1.7.0
Senast Uppdaterad 2022-11-26
Publiceringsdatum 2020-05-25
Betyg 5.00/5 Totalt 1 Betyg
Utvecklare ganta
E-post [email protected]
Betalningssätt free
Tilläggswebbplats https://github.com/ganta/marktone
Hjälpsida URL https://github.com/ganta/marktone/issues
Stödda Språk 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"
    }
}