Link Scraper

Links Collect Extension

What is Link Scraper?

Link Scraper is a Chrome extension developed by http://imagician.net, and its main feature is "Links Collect Extension".

Extension Screenshots

screenshot

Download Link Scraper Extension CRX File

Download Link Scraper 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 Usage Instructions

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

Extension Basic Information

Name Link Scraper Link Scraper
ID hcfllhjepmomiihakdhchokgmkfjnbim
Official URL https://chrome.google.com/webstore/detail/link-scraper/hcfllhjepmomiihakdhchokgmkfjnbim
Description Links Collect Extension
File Size 38.8 KB
Installation Count 226
Current Version 1.0
Last Updated 2020-07-07
Publish Date 2020-07-07
Rating 5.00/5 Total 1 Ratings
Developer http://imagician.net
Email [email protected]
Payment Type free
Extension Website https://imagician.net/
Supported Languages 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"
        }
    }
}