Kbin Link

Extension to make it easy to visit Lemmy communities from kbin.social

Kbin Link là gì?

Kbin Link là một tiện ích mở rộng Chrome được phát triển bởi ricciodaniel98, và tính năng chính của nó là "Extension to make it easy to visit Lemmy communities from kbin.social".

Ả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 Kbin Link

Tải xuống các tệp mở rộng Kbin Link 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

                        Find it annoying to copy paste `[email protected]` to look at a Lemmy community? This extension is for you.

This extension looks for Lemmy style communities and replaces them to direct you to seeing that community on your kbin/lemmy instance.

It also works on every website! Not just on your main instance.

This extension looks for Lemmy style community mentions ([email protected]) and replaces them with a link to direct you to seeing that community on your Kbin or Lemmy instance.                    

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

Tên Kbin Link Kbin Link
ID jjkdhggoccldmigjpgilnfgiihclflio
URL Chính Thức https://chromewebstore.google.com/detail/kbin-link/jjkdhggoccldmigjpgilnfgiihclflio
Mô tả Extension to make it easy to visit Lemmy communities from kbin.social
Kích Thước Tệp 24.39 KB
Số Lần Cài Đặt 78
Phiên Bản Hiện Tại 1.3.9
Cập Nhật Lần Cuối 2023-06-21
Ngày Phát Hành 2023-06-17
Đánh Giá 3.00/5 Tổng số 2 Đánh Giá
Nhà Phát Triển ricciodaniel98
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://kbin.social/u/lixus98
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Kbin Link",
    "version": "1.3.9",
    "author": "Daniel Riccio <@[email protected]>",
    "manifest_version": 3,
    "description": "Extension to make it easy to visit Lemmy communities from kbin.social",
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "css": [
                "main.css"
            ],
            "js": [
                "content_script.js"
            ]
        }
    ],
    "permissions": [
        "storage"
    ],
    "options_ui": {
        "page": "options.html",
        "open_in_tab": false
    },
    "icons": {
        "16": "icons\/icon16.png",
        "32": "icons\/icon32.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "browser_specific_settings": {
        "gecko": {
            "id": "[email protected]"
        }
    }
}