Extension for Bilibili Player

Add useful keyboard shortcuts and default settings for bilibili player.

Extension for Bilibili Playerคืออะไร?

Extension for Bilibili Player เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://guokai.dev และคุณลักษณะหลักของมันคือ "Add useful keyboard shortcuts and default settings for bilibili player."

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

screenshot
screenshot
screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Extension for Bilibili Player

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

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

                        This is a simple and small extension for Bilibili player.

The options for bilibili video player:
∙ Enable keyboard shortcuts.
∙ The space bar is always used for play/pause.
∙ Turns off bullet screen by default.
∙ Autoplay.
∙ Exit fullscreen when video ended.
∙ Prevent bottom bullet screen.
∙ Turn off lights by default.
    ∙ Auto turn on/off lights when ↕ scrolling.
∙ Set default screen mode: normal | wide screen | web fullscreen.

* It turns off bullet screen(also known as Barrage/Danmaku/弹幕/Danmu) on www.bilibili.com by default. But you can change this behavior in the options.

Keyboard shortcuts for bilibili video player:
∙ D Key: Toggle bullet screen.
∙ Shift+D Key: Show bullet screen on/off status.
∙ F Key: Toggle full screen.
∙ W Key: Toggle web full screen.
∙ T Key: Toggle wide screen.
∙ J Key: Step backward.
∙ Shift+J Key: Long step backward.
∙ K Key: Play/pause.
∙ L Key: Step forward.
∙ Shift+L Key: Long step forward.
∙ M Key: Toggle mute.
∙ N Key: Next video if possible.
∙ P Key: Toggle Picture-in-Picture (PiP) mode.
∙ I Key: Toggle lights.
∙ C Key: Toggle captions.
∙ + Key: Increase playback rate (default +0.25, max is 5).
∙ - Key: Decrease playback rate (default -0.25, min is 0.25).
∙ 0 Key: Reset playback rate to 1.
∙ Shift+S Key: Screenshot as a file.
∙ Alt+Shift+S Key: Screenshot to clipboard.
∙ , (comma) Key: Previous frame (while paused).
∙ . (period) Key: Next frame (while paused).
∙ Shift with '+' Key: Video size: 50% → 75% → 100%
∙ Shift with '-' Key: Video size: 100% → 75% → 50%
∙ Shift+0 Key: Video size: 100%
∙ B Key: Hide or show video title in the top center.
∙ G Key: Hide or show video time progress in the top left corner.
∙ H Key: Hide or show current time in the top right corner.
∙ Backspace Key: Jump to the beginning and play.

You can custom "long step forward/backward" and "the step unit of playback rate" in shortcuts page.                    

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

ชื่อ Extension for Bilibili Player Extension for Bilibili Player
ID ffoljpljalicgkljioegejmigkkkincm
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/extension-for-bilibili-pl/ffoljpljalicgkljioegejmigkkkincm
คำอธิบาย Add useful keyboard shortcuts and default settings for bilibili player.
ขนาดไฟล์ 85.74 KB
จำนวนการติดตั้ง 10,182
เวอร์ชันปัจจุบัน 2.0.19
อัปเดตครั้งล่าสุด 2023-10-31
วันที่เผยแพร่ 2020-06-09
คะแนน 4.55/5 รวมทั้งหมด 108 คะแนน
ผู้พัฒนา https://guokai.dev
อีเมล [email protected]
ประเภทการชำระเงิน free
URL หน้านโยบายความเป็นส่วนตัว https://guokai.dev/privacy
ภาษาที่รองรับ en,zh-CN,zh-TW
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "__MSG_extName__",
    "version": "2.0.19",
    "author": "Guokai Han",
    "manifest_version": 3,
    "description": "__MSG_extDescription__",
    "default_locale": "en",
    "permissions": [
        "contextMenus",
        "storage"
    ],
    "icons": {
        "16": "icon\/16.png",
        "48": "icon\/48.png",
        "128": "icon\/128.png"
    },
    "options_ui": {
        "page": "options.html",
        "open_in_tab": true
    },
    "action": {
        "default_popup": "popup.html"
    },
    "background": {
        "service_worker": "background.js"
    },
    "web_accessible_resources": [
        {
            "resources": [
                "contentScript.js"
            ],
            "matches": [
                "*:\/\/www.bilibili.com\/*"
            ]
        }
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/www.bilibili.com\/*"
            ],
            "all_frames": true,
            "run_at": "document_start",
            "js": [
                "initContentScript.js"
            ]
        }
    ]
}