Trilium Web Clipper

Save web clippings to Trilium Notes.

ما هو Trilium Web Clipper؟

Trilium Web Clipper هو إضافة Chrome تم تطويرها بواسطة zadam.apps، والميزة الرئيسية لها هي "Save web clippings to Trilium Notes.".

لقطات شاشة التمديد

screenshot

تحميل ملف CRX للإضافة Trilium Web Clipper

قم بتنزيل ملفات الامتداد Trilium Web Clipper بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات 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
عنوان صفحة سياسة الخصوصية 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"
            }
        }
    }
}