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
Eメール [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"
            }
        }
    }
}