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
官方網址 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
電子郵箱 [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"
    ]
}