Larknote

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

Larknote क्या है?

Larknote Guxi11 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "A chrome extension which can enhance the feishu documents’ ability to take notes."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot
screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Larknote एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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
ईमेल [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"
    ]
}