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 مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
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"
]
} | |