Marktone

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

Marktone là gì?

Marktone là một tiện ích mở rộng Chrome được phát triển bởi ganta, và tính năng chính của nó là "Change a Rich Text input area on kintone https://kintone.cybozu.co.jp/ to the Markdown input area.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Marktone

Tải xuống các tệp mở rộng Marktone dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Marktone Marktone
ID mmplkelbljbdkdcagoffbcbaeaccedlk
URL Chính Thức https://chromewebstore.google.com/detail/marktone/mmplkelbljbdkdcagoffbcbaeaccedlk
Mô tả Change a Rich Text input area on kintone https://kintone.cybozu.co.jp/ to the Markdown input area.
Kích Thước Tệp 1.94 MB
Số Lần Cài Đặt 667
Phiên Bản Hiện Tại 1.7.0
Cập Nhật Lần Cuối 2022-11-26
Ngày Phát Hành 2020-05-25
Đánh Giá 5.00/5 Tổng số 1 Đánh Giá
Nhà Phát Triển ganta
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/ganta/marktone
URL Trang Trợ Giúp https://github.com/ganta/marktone/issues
Ngôn Ngữ Được Hỗ Trợ 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"
    }
}