Blink
Downloads all links within a selection area.
Qu'est-ce que Blink ?
Blink est une extension Chrome développée par v.long128, et sa fonction principale est "Downloads all links within a selection area.".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Blink
Téléchargez les fichiers d'extension Blink au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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.
Informations de Base sur l'Extension
Nom | Blink |
ID | kejjgnpjiinckgkpefbeoofbooagfljl |
URL Officiel | https://chromewebstore.google.com/detail/blink/kejjgnpjiinckgkpefbeoofbooagfljl |
Description | Downloads all links within a selection area. |
Taille du Fichier | 52.06 KB |
Nombre d'Installations | 160 |
Version Actuelle | 1.0 |
Dernière Mise à Jour | 2015-06-05 |
Date de Publication | 2015-06-04 |
Évaluation | 5.00/5 Total 2 Évaluations |
Développeur | v.long128 |
Type de Paiement | free |
Langues Prises en Charge | 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" ] } |