Blink
Downloads all links within a selection area.
Wat is Blink?
Blink is een Chrome-extensie ontwikkeld door v.long128, en de belangrijkste functie is "Downloads all links within a selection area.".
Extensie Screenshots
Download het CRX-bestand van de extensie Blink
Download Blink-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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. Basisinformatie over de Extensie
| Naam | |
| ID | kejjgnpjiinckgkpefbeoofbooagfljl |
| Officiële URL | https://chromewebstore.google.com/detail/blink/kejjgnpjiinckgkpefbeoofbooagfljl |
| Beschrijving | Downloads all links within a selection area. |
| Bestandsgrootte | 52.06 KB |
| Aantal Installaties | 160 |
| Huidige Versie | 1.0 |
| Laatst Bijgewerkt | 2015-06-05 |
| Publicatiedatum | 2015-06-04 |
| Beoordeling | 5.00/5 Totaal 2 Beoordelingen |
| Ontwikkelaar | v.long128 |
| Betalingswijze | free |
| Ondersteunde Talen | 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"
]
} | |