Easy Twitch Vods

This app save's Twitch VOD link's. It's a good way to keep track of where you ended your last Twitch session

Easy Twitch Vodsคืออะไร?

Easy Twitch Vods เป็นส่วนขยายของ Chrome ที่พัฒนาโดย sebastian.appler และคุณลักษณะหลักของมันคือ "This app save's Twitch VOD link's. It's a good way to keep track of where you ended your last Twitch session"

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

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Easy Twitch Vods

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

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

                        If you have any suggestions or feedback, please let me know!

If you like this extension dont be afraid to rate it :)

Release notes:

v 1.1.7
- Fixed bug in saving time
- Fixed link to vods

v 1.1.6
- Bugfix broken links from updates of twitch

v 1.1.5
- Updated how time is fetched from player

v 1.1.4
- More compatability issues. Twitched decided to remove dates from current wod so made some conventions to get dates into the extensions

v 1.1.3
- Fixed compatability with new twitch updates

v 1.1.2
- New feature: Able to go to profile when clicking the image of your streamer. So you easily can jump directly to the next vod :)

v 1.0.2
- Hotfix where scraping crashed and did not save vods

v 1.0.1
- Fixed bugg where the app only saved latest vod

v 1.0.0
* Fixed extension to work with new updates from Twitch

v 0.1.3
* Fixed issue where time stamp was generated with decimals

v 0.1.2
* Fixed issue where links was generated in wrong format
* Added info about restarting browser                    

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

ชื่อ Easy Twitch Vods Easy Twitch Vods
ID idbnpledljooaelhbodmpjaeimmbdcmo
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/easy-twitch-vods/idbnpledljooaelhbodmpjaeimmbdcmo
คำอธิบาย This app save's Twitch VOD link's. It's a good way to keep track of where you ended your last Twitch session
ขนาดไฟล์ 294 KB
จำนวนการติดตั้ง 848
เวอร์ชันปัจจุบัน 1.2.0
อัปเดตครั้งล่าสุด 2017-11-17
วันที่เผยแพร่ 2017-11-16
คะแนน 4.17/5 รวมทั้งหมด 6 คะแนน
ผู้พัฒนา sebastian.appler
ประเภทการชำระเงิน free
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Easy Twitch Vods",
    "description": "This app save's Twitch VOD link's. It's a good way to keep track of where you ended your last Twitch session",
    "version": "1.2.0",
    "icons": {
        "16": "EasyTwitchLogo.png",
        "48": "EasyTwitchLogo.png",
        "128": "EasyTwitchLogo.png"
    },
    "browser_action": {
        "default_icon": "EasyTwitchLogo.png",
        "default_popup": "index.html"
    },
    "background": {
        "persistent": true,
        "page": "index.html"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/www.twitch.tv\/*"
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
    "permissions": [
        "storage",
        "tabs",
        "activeTab"
    ]
}