VRV Next Episode

VRV Plugin to allow redirection to next episode with hotkey press

VRV Next Episodeคืออะไร?

VRV Next Episode เป็นส่วนขยายของ Chrome ที่พัฒนาโดย rolim91 และคุณลักษณะหลักของมันคือ "VRV Plugin to allow redirection to next episode with hotkey press"

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย VRV Next Episode

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

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

                        Plugin to go to the next episode in VRV. In the current state of VRV's player, the user must scroll down and look for the next episode and click it. This plugin will allow the user to go to the next episode by pressing CTRL+SHIFT+L. This hotkey can be changed in the extension -> keyboard shortcut page.


By Default:

Press CTRL + SHIFT + L to go to the next episode.


To change hot key:

1) Go to chrome://extensions/ in the url bar
2) Click the side bar menu (Three lines at the top right)
3) Click Keyboard Shortcuts
4) Find VRV Next Episode
5) In the "Send a 'next-episode' event to the extension" line, click on the hotkey that is already set
6) Set a new hotkey that you would prefer


Update 0.0.0.3:

- Allows multiple VRV tabs, saves each vrv.co/watch tabs' next episode url
- Will not go to next episode url when hotkey is pressed on tabs that are not in vrv.co/watch

If you've installed the extension before, please re-download or wait for Chrome to update the extension.                    

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

ชื่อ VRV Next Episode VRV Next Episode
ID jahacgpapldinpdlhkfadbhbikeaamnd
URL อย่างเป็นทางการ https://chrome.google.com/webstore/detail/vrv-next-episode/jahacgpapldinpdlhkfadbhbikeaamnd
คำอธิบาย VRV Plugin to allow redirection to next episode with hotkey press
ขนาดไฟล์ 17.7 KB
จำนวนการติดตั้ง 397
เวอร์ชันปัจจุบัน 0.0.0.3
อัปเดตครั้งล่าสุด 2018-03-29
วันที่เผยแพร่ 2018-03-29
คะแนน 4.25/5 รวมทั้งหมด 8 คะแนน
ผู้พัฒนา rolim91
ประเภทการชำระเงิน free
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "VRV Next Episode",
    "version": "0.0.0.3",
    "description": "VRV Plugin to allow redirection to next episode with hotkey press",
    "author": "Richmond Lim",
    "manifest_version": 2,
    "permissions": [
        "tabs",
        "https:\/\/vrv.co\/watch\/*",
        "https:\/\/api.vrv.co\/*",
        "webRequest",
        "webRequestBlocking"
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "browser_action": {
        "default_icon": {
            "16": "images\/vrv-plug16.png",
            "32": "images\/vrv-plug32.png",
            "48": "images\/vrv-plug48.png",
            "128": "images\/vrv-plug128.png"
        }
    },
    "commands": {
        "next-episode": {
            "suggested_key": {
                "default": "Ctrl+Shift+L",
                "mac": "MacCtrl+Shift+L"
            },
            "description": "Send a 'next-episode' event to the extension"
        }
    }
}