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
公式URL 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
Eメール [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": [
        "*:\/\/*\/*"
    ]
}