Link Scraper

Links Collect Extension

Link Scraperとは何ですか?

Link Scraperはhttp://imagician.netによって開発されたChromeの拡張機能で、その主な機能は「Links Collect Extension」です。

拡張機能のスクリーンショット

screenshot

Link Scraper拡張機能のCRXファイルをダウンロード

Link Scraper拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        An extension for quickly copying all links in a page.
一个用于快速拷贝页面内所有链接的扩展。                    

拡張機能の基本情報

名前 Link Scraper Link Scraper
ID hcfllhjepmomiihakdhchokgmkfjnbim
公式URL https://chrome.google.com/webstore/detail/link-scraper/hcfllhjepmomiihakdhchokgmkfjnbim
説明 Links Collect Extension
ファイルサイズ 38.8 KB
インストール数 226
現在のバージョン 1.0
最終更新日 2020-07-07
公開日 2020-07-07
評価 5.00/5 合計 1 レビュー
開発者 http://imagician.net
Eメール [email protected]
支払い方法 free
拡張機能のウェブサイト https://imagician.net/
対応言語 zh-CN
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Link Scraper",
    "description": "Links Collect Extension",
    "version": "1.0",
    "manifest_version": 2,
    "icons": {
        "128": "icon\/icon_128.png"
    },
    "permissions": [
        "contextMenus",
        "activeTab"
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "browser_action": {
        "default_popup": "popup.html",
        "default_icon": "icon\/icon_128.png"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "jquery-3.5.1.min.js",
                "content-script.js"
            ]
        }
    ],
    "commands": {
        "_execute_browser_action": {
            "suggested_key": {
                "default": "Ctrl+Shift+S",
                "mac": "MacCtrl+Shift+S"
            },
            "description": "Opens popup"
        }
    }
}