Nextube - The missing next button

Next button for YouTube

Nextube - The missing next buttonคืออะไร?

Nextube - The missing next button เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Nadav และคุณลักษณะหลักของมันคือ "Next button for YouTube"

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

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Nextube - The missing next button

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

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

                        Nextube adds a YouTube next button in your browser windows! 

No more searching for the YouTube tab just to change the current song,
with Nextube, just press the next icon and YouTube will play the next available song.

Notes:
- Please refresh your YouTube tabs after installing Nextube
- Nextube will only control the first playing YouTube tab so you can safely keep other YouTube tabs/windows open when not playing.                    

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

ชื่อ Nextube - The missing next button Nextube - The missing next button
ID kefiabkknppcjbbimoijcjbcehlcmcco
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/nextube-the-missing-next/kefiabkknppcjbbimoijcjbcehlcmcco
คำอธิบาย Next button for YouTube
ขนาดไฟล์ 11.39 KB
จำนวนการติดตั้ง 175
เวอร์ชันปัจจุบัน 0.9.3
อัปเดตครั้งล่าสุด 2016-03-06
วันที่เผยแพร่ 2016-03-06
คะแนน 4.82/5 รวมทั้งหมด 11 คะแนน
ผู้พัฒนา Nadav
ประเภทการชำระเงิน free
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Nextube - The missing next button",
    "short_name": "Nextube",
    "version": "0.9.3",
    "manifest_version": 2,
    "description": "Next button for YouTube",
    "icons": {
        "16": "icons\/yn16.png",
        "48": "icons\/yn48.png",
        "128": "icons\/yn128.png"
    },
    "background": {
        "page": "src\/bg\/background.html",
        "persistent": true
    },
    "browser_action": {
        "default_icon": {
            "19": "icons\/yn19.png",
            "38": "icons\/yn72.png"
        },
        "default_title": "Nextube"
    },
    "commands": {
        "next_song": {
            "suggested_key": {
                "default": "Ctrl+N",
                "mac": "MacCtrl+N"
            },
            "description": "Play Next"
        },
        "pause": {
            "suggested_key": {
                "default": "Ctrl+P",
                "mac": "MacCtrl+P"
            },
            "description": "Play\/Pause"
        }
    },
    "permissions": [
        "tabs",
        "contextMenus"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.youtube.com\/*"
            ],
            "js": [
                "src\/inject\/inject.js"
            ]
        }
    ]
}