Blink
Downloads all links within a selection area.
Blinkคืออะไร?
Blink เป็นส่วนขยายของ Chrome ที่พัฒนาโดย v.long128 และคุณลักษณะหลักของมันคือ "Downloads all links within a selection area."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Blink
ดาวน์โหลดไฟล์ส่วนขยาย Blink ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
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. ข้อมูลพื้นฐานของส่วนขยาย
| ชื่อ | |
| ID | kejjgnpjiinckgkpefbeoofbooagfljl |
| URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/blink/kejjgnpjiinckgkpefbeoofbooagfljl |
| คำอธิบาย | Downloads all links within a selection area. |
| ขนาดไฟล์ | 52.06 KB |
| จำนวนการติดตั้ง | 160 |
| เวอร์ชันปัจจุบัน | 1.0 |
| อัปเดตครั้งล่าสุด | 2015-06-05 |
| วันที่เผยแพร่ | 2015-06-04 |
| คะแนน | 5.00/5 รวมทั้งหมด 2 คะแนน |
| ผู้พัฒนา | v.long128 |
| ประเภทการชำระเงิน | free |
| ภาษาที่รองรับ | 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"
]
} | |