Kona: Download All Files

Lets you download all project files from Kona with a single click.

Kona: Download All Filesคืออะไร?

Kona: Download All Files เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Victor Petrov และคุณลักษณะหลักของมันคือ "Lets you download all project files from Kona with a single click."

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Kona: Download All Files

ดาวน์โหลดไฟล์ส่วนขยาย Kona: Download All Files ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        - Are you getting tired of downloading multiple files from Kona, one by one, like a mindless drone? 
  - Are you spending your time downloading files instead of being productive? 
  - Have you complained to the good folks at Kona.com, but they just won't listen? 

Say no more! There is now a better way of using Kona. Meet the first Chrome Extension for Kona, Download All Files. It boasts the following impressive set of features:

  * Downloads all files

But, wait, there's more! It's also Open Source(tm), i.e. "free as in 'not even a beer'". This means that anyone, from your local IT nerd to the wonderful ninjas of Kona, can download and take a good long look at how absolutely brilliant this code is.

Step-by-step instructions:

  1. Install this extension.
  2. Go to kona.com and click on the 'Files' tab.
  3. Click the 'Download all' button and wait for the files to download.
  4. Kona will now prompt you to download a ZIP archive.
  5. Save and extract the archive into a folder of your choice.
  
We ask you to please be gentle, as this extension is in its infancy, so some of its brilliance may take time to surface. If you have any complaints, suggestions, if you want to download the code or if you just want to say 'Hi', visit our website by clicking on the Website link above.

Thank you and have fun downloading multiple files from Kona!


--
Disclaimer:

Do not use when computer is turned off. In case of severe malfunction, refer to your local emergency exorcist.                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Kona: Download All Files Kona: Download All Files
ID jooccljmbcngepkicnmcookhofnlodoe
URL อย่างเป็นทางการ https://chrome.google.com/webstore/detail/kona-download-all-files/jooccljmbcngepkicnmcookhofnlodoe
คำอธิบาย Lets you download all project files from Kona with a single click.
ขนาดไฟล์ 81.37 KB
จำนวนการติดตั้ง 335
เวอร์ชันปัจจุบัน 1.3
อัปเดตครั้งล่าสุด 2014-02-24
วันที่เผยแพร่ 2014-02-24
คะแนน 3.70/5 รวมทั้งหมด 10 คะแนน
ผู้พัฒนา Victor Petrov
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/vpetrov/kona
URL หน้าช่วยเหลือ https://github.com/vpetrov/kona/issues
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Kona: Download All Files",
    "short_name": "Kona",
    "version": "1.3",
    "description": "Lets you download all project files from Kona with a single click.",
    "homepage_url": "https:\/\/github.com\/vpetrov\/kona",
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "permissions": [
        "storage",
        "system.storage",
        "unlimitedStorage",
        "https:\/\/www.kona.com\/*",
        "https:\/\/s3.amazonaws.com\/*"
    ],
    "page_action": {
        "default_icon": "icon48.png",
        "default_title": "Download all files"
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.kona.com\/*"
            ],
            "css": [
                "kona.css"
            ],
            "js": [
                "zip\/zip.js",
                "zip\/deflate.js",
                "zip\/inflate.js",
                "zip\/zip-fs.js",
                "zip\/zip-ext.js",
                "kona.js"
            ],
            "run_at": "document_idle"
        }
    ]
}