Open local Link

Open local link by clicking

什么是Open local Link?

Open local Link是由hashed tomato开发的Chrome扩展程序,该扩展的主要功能是“Open local link by clicking”。

扩展截图

screenshot

下载Open local Link扩展crx文件

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

扩展基本信息

名称 Open local Link Open local Link
ID bhipgegdnofneghbmnmgbfdjfhbmejbe
官方URL https://chromewebstore.google.com/detail/open-local-link/bhipgegdnofneghbmnmgbfdjfhbmejbe
简介 Open local link by clicking
文件大小 129 KB
安装次数 3,033
当前版本 1.0.10
更新时间 2022-08-20
上架时间 2020-07-20
评分 3.00/5 共2次评分
开发者 hashed tomato
电子邮箱 [email protected]
付费类型 free
扩展官网 https://github.com/hashedtomato3/open-local-link
帮助页面URL https://github.com/hashedtomato3/open-local-link
支持的语言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Open local Link",
    "version": "1.0.10",
    "manifest_version": 2,
    "description": "Open local link by clicking",
    "icons": {
        "128": "icon-128.png"
    },
    "permissions": [
        "nativeMessaging"
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content_script.js"
            ],
            "run_at": "document_idle",
            "all_frames": true
        }
    ],
    "options_page": ".\/install.html"
}