Double Click assets downloader
Bulk download all the items on a Google DoubleClick asset library page.
ما هو Double Click assets downloader؟
Double Click assets downloader هو إضافة Chrome تم تطويرها بواسطة skyworksdigi، والميزة الرئيسية لها هي "Bulk download all the items on a Google DoubleClick asset library page.".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Double Click assets downloader
قم بتنزيل ملفات الامتداد Double Click assets downloader بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
DoubleClick assets downloader allows you to easily download Google DoubleClick assets from several folders at once. HOW TO USE: 1. Check all the boxes from those folders on DoubleClick Studio you want to download. 2. Click on the extension. Wait for the CSV file to be downloaded, upload it when the add file button prompt. 3. That's it! Your folders are now in your Downloads folder. CONTRIBUTORS: Carmen Chapa Luke Twomey @Sky Works!
معلومات أساسية عن التمديد
الاسم | |
ID | bjipniagecflejnaojalejgihdnfemah |
عنوان URL الرسمي | https://chrome.google.com/webstore/detail/double-click-assets-downl/bjipniagecflejnaojalejgihdnfemah |
الوصف | Bulk download all the items on a Google DoubleClick asset library page. |
حجم الملف | 82.99 KB |
عدد التثبيتات | 175 |
النسخة الحالية | 1.3 |
آخر تحديث | 2018-06-06 |
تاريخ النشر | 2018-06-06 |
تقييم | 5.00/5 مجموع تقييمات 2 |
المطور | skyworksdigi |
نوع الدفع | free |
اللغات المدعومة | en-GB |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Double Click assets downloader", "author": "Luke Twomey & Carmen Chapa", "content_scripts": [ { "run_at": "document_end", "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "jquery-3.2.1.min.js", "content.js" ] } ], "description": "Bulk download all the items on a Google DoubleClick asset library page.", "version": "1.3", "icons": { "16": "images\/icon16.png", "24": "images\/icon24.png", "32": "images\/icon32.png", "48": "images\/icon48.png", "128": "images\/icon128.png" }, "browser_action": { "default_icon": { "16": "images\/icon16.png", "24": "images\/icon24.png", "32": "images\/icon32.png", "48": "images\/icon48.png", "128": "images\/icon128.png" }, "default_popup": "popup.html" }, "permissions": [ "tabs", "activeTab", "downloads", "downloads.open", "http:\/\/*\/*", "https:\/\/*\/*" ], "background": { "scripts": [ "background.js" ], "persistent": false } } |