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