Larknote

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

Apa itu Larknote?

Larknote adalah ekstensi Chrome yang dikembangkan oleh Guxi11, dan fitur utamanya adalah "A chrome extension which can enhance the feishu documents’ ability to take notes.".

Screenshot Ekstensi

screenshot
screenshot
screenshot
screenshot

Unduh Berkas CRX Ekstensi Larknote

Unduh file ekstensi Larknote dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        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#
^_^                    

Informasi Dasar Ekstensi

Nama Larknote Larknote
ID icjjpnmgiofpnnfpjpbjmfjnaokcdmpi
URL Resmi https://chromewebstore.google.com/detail/larknote/icjjpnmgiofpnnfpjpbjmfjnaokcdmpi
Deskripsi A chrome extension which can enhance the feishu documents’ ability to take notes.
Ukuran File 3.26 MB
Jumlah Instalasi 29
Versi Saat Ini 0.0.2
Terakhir Diperbarui 2020-08-13
Tanggal Publikasi 2020-08-04
Pengembang Guxi11
Email [email protected]
Tipe Pembayaran free
Situs Ekstensi https://github.com/guxi11/larknote
Bahasa yang Didukung 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"
    ]
}