Blink

Downloads all links within a selection area.

What is Blink?

Blink is a Chrome extension developed by v.long128, and its main feature is "Downloads all links within a selection area.".

Extension Screenshots

screenshot

Download Blink Extension CRX File

Download Blink 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

                        Download multiple links at once by selecting a region on a webpage that encloses them. Once done downloading, simply turn Blink off to resume browsing.                    

Extension Basic Information

Name Blink Blink
ID kejjgnpjiinckgkpefbeoofbooagfljl
Official URL https://chromewebstore.google.com/detail/blink/kejjgnpjiinckgkpefbeoofbooagfljl
Description Downloads all links within a selection area.
File Size 52.06 KB
Installation Count 160
Current Version 1.0
Last Updated 2015-06-05
Publish Date 2015-06-04
Rating 5.00/5 Total 2 Ratings
Developer v.long128
Payment Type free
Supported Languages en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Blink",
    "description": "Downloads all links within a selection area.",
    "version": "1.0",
    "browser_action": {
        "default_icon": "icon19-off.png",
        "default_title": "Blink is off."
    },
    "icons": {
        "16": "icon-16.png",
        "24": "icon-24.png",
        "32": "icon-32.png",
        "48": "icon-48.png",
        "64": "icon-64.png",
        "128": "icon-128.png"
    },
    "background": {
        "scripts": [
            "events.js"
        ],
        "persistent": true
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "jquery-1.11.3.min.js",
                "content_script.js"
            ]
        }
    ],
    "permissions": [
        "tabs",
        "http:\/\/*\/",
        "https:\/\/*\/",
        "downloads"
    ]
}