Link Locator

Simply presents all the links in the current website

什麼是Link Locator?

Link Locator是由sharon.medianmrkt開發的Chrome擴展程式,該擴展的主要功能是“Simply presents all the links in the current website”。

擴展截圖

screenshot

下載Link Locator擴展crx文件

下載Link Locator擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        Link Locator is a browser extension that makes it easy for users to access all of the links on a website. With just a single click, the extension opens a pop-up window containing a list of all the links on the current webpage. This can be useful for websites with a large number of links, as it allows users to easily find and navigate to the content they are interested in. Link Locator also helps users discover new and interesting content on a website that they may not have been aware of before. Simply install the extension and click the icon to open the link list whenever you need it.                    

擴展基本資訊

名稱 Link Locator Link Locator
ID ljfclipbaplebpphafkaihekkkaeabnh
官方網址 https://chrome.google.com/webstore/detail/link-locator/ljfclipbaplebpphafkaihekkkaeabnh
簡介 Simply presents all the links in the current website
檔案大小 16.06 KB
安裝次數 7,128
目前版本 1
更新時間 2022-12-28
上架時間 2022-12-28
評分 5.00/5 共 1 次評分
開發者 sharon.medianmrkt
電子郵箱 [email protected]
付費類型 free
擴展官網 https://home.entunedanludb.com/
說明頁面URL https://home.entunedanludb.com/contact.html
支援的語言 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "action": {
        "default_icon": "logo.png",
        "default_title": "Link Locator",
        "default_popup": "popup.html"
    },
    "description": "Simply presents all the links in the current website",
    "icons": {
        "128": "logo.png"
    },
    "manifest_version": 3,
    "name": "Link Locator",
    "version": "1",
    "background": {
        "service_worker": "background.js"
    },
    "permissions": [
        "storage"
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "icons\/*.svg"
            ],
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ]
        }
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*\/*",
                "http:\/\/*\/*"
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "host_permissions": [
        "*:\/\/*\/*"
    ]
}