Trilium Web Clipper

Save web clippings to Trilium Notes.

什麼是Trilium Web Clipper?

Trilium Web Clipper是由zadam.apps開發的Chrome擴展程式,該擴展的主要功能是“Save web clippings to Trilium Notes.”。

擴展截圖

screenshot

下載Trilium Web Clipper擴展crx文件

下載Trilium Web Clipper擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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
官方網址 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"
            }
        }
    }
}