Blink
Downloads all links within a selection area.
Was ist Blink?
Blink ist eine Chrome-Erweiterung, die von v.long128 entwickelt wurde, und ihr Hauptmerkmal ist "Downloads all links within a selection area.".
Erweiterungsscreenshots
Blink-Erweiterungs-CRX-Datei herunterladen
Laden Sie Blink-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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.
Grundlegende Informationen zur Erweiterung
Name | Blink |
ID | kejjgnpjiinckgkpefbeoofbooagfljl |
Offizielle URL | https://chromewebstore.google.com/detail/blink/kejjgnpjiinckgkpefbeoofbooagfljl |
Beschreibung | Downloads all links within a selection area. |
Dateigröße | 52.06 KB |
Installationsanzahl | 160 |
Aktuelle Version | 1.0 |
Letztes Update | 2015-06-05 |
Veröffentlichungsdatum | 2015-06-04 |
Bewertung | 5.00/5 Insgesamt 2 Bewertungen |
Entwickler | v.long128 |
Zahlungsart | free |
Unterstützte Sprachen | 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" ] } |