Grateful Grabber

Easy soundboard downloads from archive!

Grateful Grabberคืออะไร?

Grateful Grabber เป็นส่วนขยายของ Chrome ที่พัฒนาโดย chrissbendel และคุณลักษณะหลักของมันคือ "Easy soundboard downloads from archive!"

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

screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Grateful Grabber

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

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

                        This extension will make downloading your favorite Grateful Dead soundboards from archive.org easier than ever! In just one click you can download an entire show. It's that simple.

------------------------------------------------------------------------------------
Feel free to reach out to me and request and features, bugs, or new artwork images and I will be happy to chat!
------------------------------------------------------------------------------------
2.4.3
- Fixed an issue where broken track titles from archive would make the extension not appear on the page

2.4.2
- Never realized that individual song downloads were broken. This was something that was changed in a recent version of chrome back in October, and I had no idea it affected grateful grabber. This should be fixed now, but the single downloads unfortunately won't be as fast, but they will work now! Sorry for any inconvenience over the past few months, and I hope everyone will be happy again!

2.4.0
- Fixed an issue where certain shows wouldn't download multiple versions of the same songs
- Added numbers to the song titles so they appear in order and you know what track number they are

2.3.0 - Thanks for the PR Jeremy!
- Cleaned up a ton of code 
- Fetch files from the server rather than scraping HTML
- Looked into FLAC material - Any users who have been requesting FLAC files, we may be out of luck as they don't even seem to exist on archive's server - They're either missing or completely blocked off from the public.

2.2.4
- Publication/show date selector changed on archive's end, resulting in broken filenames. Should be fixed (100% on mac, any windows user's email me if it's still broken there)

2.2.3
- Turns out regex broke everything, should be back to normal

2.2.2
- Some songs weren't getting downloaded because of special characters. Regex should fix this.

2.2.1
-Text files with source information and taper notes added!

2.2.0
-UI Updates. Much cleaner and simpler look!
-Included a fun little random stealie every time you visit a show! (Email me with any repository of cool pictures and I can incorporate more!)

2.1.1
-Fixed issue on windows with songs that had a '>' in the track title, all songs should download now!

2.1.0 Version release
-Collapsible panel to access GG                    

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

ชื่อ Grateful Grabber Grateful Grabber
ID oaodbbeaklbdmjcghbkcfgmioafnjbfe
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/grateful-grabber/oaodbbeaklbdmjcghbkcfgmioafnjbfe
คำอธิบาย Easy soundboard downloads from archive!
ขนาดไฟล์ 2 MB
จำนวนการติดตั้ง 5,154
เวอร์ชันปัจจุบัน 2.4.3
อัปเดตครั้งล่าสุด 2019-04-23
วันที่เผยแพร่ 2019-04-23
คะแนน 4.41/5 รวมทั้งหมด 73 คะแนน
ผู้พัฒนา chrissbendel
อีเมล [email protected]
ประเภทการชำระเงิน free
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Grateful Grabber",
    "version": "2.4.3",
    "manifest_version": 2,
    "description": "Easy soundboard downloads from archive!",
    "homepage_url": "https:\/\/chrome.google.com\/webstore\/detail\/grateful-grabber\/oaodbbeaklbdmjcghbkcfgmioafnjbfe?hl=en",
    "icons": {
        "16": "icons\/stealie16.png",
        "48": "icons\/stealie48.png",
        "128": "icons\/stealie128.png"
    },
    "default_locale": "en",
    "background": {
        "scripts": [
            "src\/bg\/background.js"
        ],
        "persistent": true
    },
    "permissions": [
        "https:\/\/archive.org\/*",
        ""
    ],
    "content_security_policy": "script-src 'self'; object-src 'self'",
    "web_accessible_resources": [
        "js\/filesaver\/FileSaver.min.js",
        "main.js",
        "box.html",
        "icons\/gdpainting.png",
        "icons\/neutron.jpg",
        "icons\/owl.png",
        "icons\/popeye.jpeg",
        "icons\/regularstealie.jpg",
        "icons\/rose.jpg",
        "icons\/spr1990.jpg",
        "icons\/sunflowers.jpg",
        "icons\/sunmoon.jpeg",
        "icons\/terrapin.jpg",
        "icons\/terrapins.jpg"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/archive.org\/*"
            ],
            "js": [
                "js\/jquery\/jquery.js",
                "js\/underscore-min.js",
                "js\/jszip\/jszip.js",
                "js\/jszip-utils\/jszip-utils.js",
                "js\/filesaver\/FileSaver.min.js",
                "js\/mustache\/mustache.min.js",
                "main.js"
            ],
            "run_at": "document_end"
        }
    ]
}