Add to Shaarli

This extension lets you add the current tab or a note to your Shaarli instance.

Add to Shaarli là gì?

Add to Shaarli là một tiện ích mở rộng Chrome được phát triển bởi Lucas Bürgy, và tính năng chính của nó là "This extension lets you add the current tab or a note to your Shaarli instance.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Add to Shaarli

Tải xuống các tệp mở rộng Add to Shaarli dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        You have to setup your Shaarli instance in the options first.

- On click : Add current tab
- Alt+S : Add current tab
- Alt+N : Add a note

This extension is open source and available here: https://github.com/burgyl/AddToShaarli                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Add to Shaarli Add to Shaarli
ID jhfblapoehcfajokolimghdfmeeakbee
URL Chính Thức https://chromewebstore.google.com/detail/add-to-shaarli/jhfblapoehcfajokolimghdfmeeakbee
Mô tả This extension lets you add the current tab or a note to your Shaarli instance.
Kích Thước Tệp 99.53 KB
Số Lần Cài Đặt 1,473
Phiên Bản Hiện Tại 1.1.0
Cập Nhật Lần Cuối 2021-03-20
Ngày Phát Hành 2019-03-24
Đánh Giá 5.00/5 Tổng số 4 Đánh Giá
Nhà Phát Triển Lucas Bürgy
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/burgyl/AddToShaarli
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Add to Shaarli",
    "description": "This extension lets you add the current tab or a note to your Shaarli instance.",
    "version": "1.1.0",
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "browser_action": {
        "default_icon": "icon.png"
    },
    "options_page": "options.html",
    "options_ui": {
        "page": "options.html",
        "open_in_tab": false
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "permissions": [
        "activeTab",
        "storage"
    ],
    "commands": {
        "add-url": {
            "suggested_key": {
                "default": "Alt+S"
            },
            "description": "Add current tab"
        },
        "add-note": {
            "suggested_key": {
                "default": "Alt+N"
            },
            "description": "Add a note"
        }
    }
}