Larknote

A chrome extension which can enhance the feishu documents’ ability to take notes.

Larknoteとは何ですか?

LarknoteはGuxi11によって開発されたChromeの拡張機能で、その主な機能は「A chrome extension which can enhance the feishu documents’ ability to take notes.」です。

拡張機能のスクリーンショット

screenshot
screenshot
screenshot
screenshot

Larknote拡張機能のCRXファイルをダウンロード

Larknote拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        Larknote can enhance the feishu documents’ ability to take notes.

Features:
1. Autocomplete link title. When you hover the mouse over the link, the title of the linked page will be automatically parsed and used as the text of the current link.

The functions supported now are simple, but can help you increase productivity.

Checkout the demo to see larknote in action: https://d9utmw456f.feishu.cn/docs/doccnlRIP2aBOUFz9VyCl5H9zxd#
^_^                    

拡張機能の基本情報

名前 Larknote Larknote
ID icjjpnmgiofpnnfpjpbjmfjnaokcdmpi
公式URL https://chromewebstore.google.com/detail/larknote/icjjpnmgiofpnnfpjpbjmfjnaokcdmpi
説明 A chrome extension which can enhance the feishu documents’ ability to take notes.
ファイルサイズ 3.26 MB
インストール数 29
現在のバージョン 0.0.2
最終更新日 2020-08-13
公開日 2020-08-04
開発者 Guxi11
Eメール [email protected]
支払い方法 free
拡張機能のウェブサイト https://github.com/guxi11/larknote
対応言語 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Larknote",
    "version": "0.0.2",
    "manifest_version": 2,
    "description": "A chrome extension which can enhance the feishu documents\u2019 ability to take notes.",
    "homepage_url": "https:\/\/github.com\/guxi11\/larknote",
    "icons": {
        "16": "icons\/icon16.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "browser_action": {
        "default_title": "Larknote",
        "default_popup": "popup.html"
    },
    "options_page": "options.html",
    "default_locale": "en",
    "background": {
        "scripts": [
            "js\/background.js"
        ],
        "persistent": true
    },
    "permissions": [
        "storage",
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.feishu.cn\/*"
            ],
            "css": [
                "css\/content.css"
            ],
            "js": [
                "js\/content.js"
            ]
        }
    ],
    "web_accessible_resources": [
        "css\/content.css",
        "js\/autolink.js"
    ]
}