Trilium Web Clipper

Save web clippings to Trilium Notes.

Trilium Web Clipper क्या है?

Trilium Web Clipper zadam.apps द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Save web clippings to Trilium Notes."।

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

screenshot

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

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

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

                        Trilium web clipper allows you to clip text, whole pages, screenshots and short notes directly from the browser and save them into Trilium Notes.

Note that this extension is not usable on its own and must be used with Trilium Notes. If you already have Trilium Notes installed, you can take a look on the https://github.com/zadam/trilium/wiki/Web-clipper to see how you can set it up.                    

एक्सटेंशन की मूल जानकारी

नाम Trilium Web Clipper Trilium Web Clipper
ID dfhgmnfclbebfobmblelddiejjcijbjm
आधिकारिक URL https://chromewebstore.google.com/detail/trilium-web-clipper/dfhgmnfclbebfobmblelddiejjcijbjm
विवरण Save web clippings to Trilium Notes.
फ़ाइल का आकार 84.61 KB
स्थापना संख्या 5,000
वर्तमान संस्करण 1.0.1
अंतिम अपडेट 2022-11-01
प्रकाशन तिथि 2019-07-20
रेटिंग 4.77/5 कुल 13 रेटिंग्स
डेवलपर zadam.apps
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://github.com/zadam/trilium/wiki/Web-clipper
गोपनीयता नीति पृष्ठ URL https://github.com/zadam/trilium/wiki/Privacy-policy
समर्थित भाषाएँ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Trilium Web Clipper",
    "version": "1.0.1",
    "description": "Save web clippings to Trilium Notes.",
    "homepage_url": "https:\/\/github.com\/zadam\/trilium-web-clipper",
    "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
    "icons": {
        "32": "icons\/32.png",
        "48": "icons\/48.png",
        "96": "icons\/96.png"
    },
    "permissions": [
        "activeTab",
        "tabs",
        "http:\/\/*\/",
        "https:\/\/*\/",
        "",
        "storage",
        "contextMenus"
    ],
    "browser_action": {
        "default_icon": "icons\/32.png",
        "default_title": "Trilium Web Clipper",
        "default_popup": "popup\/popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "lib\/browser-polyfill.js",
                "utils.js",
                "content.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "lib\/browser-polyfill.js",
            "utils.js",
            "trilium_server_facade.js",
            "background.js"
        ]
    },
    "options_ui": {
        "page": "options\/options.html"
    },
    "commands": {
        "saveSelection": {
            "description": "Save the selected text into a note",
            "suggested_key": {
                "default": "Ctrl+Shift+S"
            }
        },
        "saveWholePage": {
            "description": "Save the current page",
            "suggested_key": {
                "default": "Alt+Shift+S"
            }
        },
        "saveCroppedScreenshot": {
            "description": "Take a cropped screenshot of the current page",
            "suggested_key": {
                "default": "Ctrl+Shift+E"
            }
        }
    }
}