Blink
Downloads all links within a selection area.
Hvad er Blink?
Blink er en Chrome-udvidelse udviklet af v.long128, og dens hovedfunktion er "Downloads all links within a selection area.".
Udvidelsesskærmbilleder
Download Blink-udvidelses-CRX-fil
Download Blink-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.
Brugsanvisning til Udvidelsen
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. Grundlæggende oplysninger om udvidelsen
| Navn | |
| ID | kejjgnpjiinckgkpefbeoofbooagfljl |
| Officiel URL | https://chromewebstore.google.com/detail/blink/kejjgnpjiinckgkpefbeoofbooagfljl |
| Beskrivelse | Downloads all links within a selection area. |
| Filstørrelse | 52.06 KB |
| Antal Installationer | 160 |
| Nuværende Version | 1.0 |
| Senest Opdateret | 2015-06-05 |
| Udgivelsesdato | 2015-06-04 |
| Bedømmelse | 5.00/5 Samlet 2 Bedømmelser |
| Udvikler | v.long128 |
| Betalingsmetode | free |
| Understøttede Sprog | 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"
]
} | |