Kbin Link

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

什么是Kbin Link?

Kbin Link是由ricciodaniel98开发的Chrome扩展程序,该扩展的主要功能是“Extension to make it easy to visit Lemmy communities from kbin.social”。

扩展截图

screenshot
screenshot

下载Kbin Link扩展crx文件

下载Kbin Link扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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.                    

扩展基本信息

名称 Kbin Link Kbin Link
ID jjkdhggoccldmigjpgilnfgiihclflio
官方URL https://chromewebstore.google.com/detail/kbin-link/jjkdhggoccldmigjpgilnfgiihclflio
简介 Extension to make it easy to visit Lemmy communities from kbin.social
文件大小 24.39 KB
安装次数 78
当前版本 1.3.9
更新时间 2023-06-21
上架时间 2023-06-17
评分 3.00/5 共2次评分
开发者 ricciodaniel98
电子邮箱 [email protected]
付费类型 free
扩展官网 https://kbin.social/u/lixus98
支持的语言 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]"
        }
    }
}