Open local Link

Open local link by clicking

What is Open local Link?

Open local Link is a Chrome extension developed by hashed tomato, and its main feature is "Open local link by clicking".

Extension Screenshots

screenshot

Download Open local Link Extension CRX File

Download Open local Link extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Basic Information

Name Open local Link Open local Link
ID bhipgegdnofneghbmnmgbfdjfhbmejbe
Official URL https://chromewebstore.google.com/detail/open-local-link/bhipgegdnofneghbmnmgbfdjfhbmejbe
Description Open local link by clicking
File Size 129 KB
Installation Count 3,033
Current Version 1.0.10
Last Updated 2022-08-20
Publish Date 2020-07-20
Rating 3.00/5 Total 2 Ratings
Developer hashed tomato
Email [email protected]
Payment Type free
Extension Website https://github.com/hashedtomato3/open-local-link
Help Page URL https://github.com/hashedtomato3/open-local-link
Supported Languages 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"
}