AcFun 剧场模式

将AcFun播放页更改为类似于Youtube的剧场模式

什么是AcFun 剧场模式?

AcFun 剧场模式是由guoyaozhi开发的Chrome扩展程序,该扩展的主要功能是“将AcFun播放页更改为类似于Youtube的剧场模式”。

扩展截图

screenshot
screenshot

下载AcFun 剧场模式扩展crx文件

下载AcFun 剧场模式扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        我很喜欢Youtube的剧场模式,AcFun更新了官方Html5播放器后,我在其基础上适配一些样式和添加一些个人喜欢的小功能,点击扩展程序小图标,可以更改是否默认开启剧场模式

播放器自动剧场模式(默认开启可关闭)
播放器自动获取焦点
播放器常驻进度条(默认开启可关闭)
全屏模式滚动浏览详情
Media Session API
f键 进入全屏模式
i键 进入画中画模式
t键 切换剧场模式
c键 弹幕打开或关闭
m键 禁音打开或关闭

版权说明
这个项目是一个开源项目,遵循MIT开源协议

更新历史
1.1.4
AcFun适配 Media Session API
新增禁音快捷键,并且键快捷现在只小写状态下生效
修复B站样式错误
持续优化

1.1.3
持续优化

1.1.2
适配新版A站
修复样式和BUG

1.1.0
新增AcFun播放器进度条常驻显示功能
持续优化

1.0.51
优化样式
修复BUG                    

扩展基本信息

名称 AcFun 剧场模式 AcFun 剧场模式
ID ljmpmclhmholjgekoddnjplfinomoaof
官方URL https://chromewebstore.google.com/detail/acfun-%E5%89%A7%E5%9C%BA%E6%A8%A1%E5%BC%8F/ljmpmclhmholjgekoddnjplfinomoaof
简介 将AcFun播放页更改为类似于Youtube的剧场模式
文件大小 19.83 KB
安装次数 262
当前版本 1.1.4
更新时间 2020-11-14
上架时间 2020-04-11
评分 5.00/5 共2次评分
开发者 guoyaozhi
电子邮箱 [email protected]
付费类型 free
扩展官网 https://github.com/Yzi/AcFun-TheaterMode
帮助页面URL https://github.com/Yzi/AcFun-TheaterMode/issues
支持的语言 zh-CN
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "AcFun \u5267\u573a\u6a21\u5f0f",
    "version": "1.1.4",
    "description": "\u5c06AcFun\u64ad\u653e\u9875\u66f4\u6539\u4e3a\u7c7b\u4f3c\u4e8eYoutube\u7684\u5267\u573a\u6a21\u5f0f",
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.acfun.cn\/v\/ac*",
                "https:\/\/www.acfun.cn\/bangumi\/a*"
            ],
            "js": [
                "content_scripts\/common.js",
                "content_scripts\/init_acfun_new.js"
            ],
            "css": [
                "styles\/common.css",
                "styles\/background_acfun_new.css"
            ],
            "run_at": "document_end"
        },
        {
            "matches": [
                "https:\/\/www.bilibili.com\/video\/*",
                "https:\/\/www.bilibili.com\/bangumi\/play\/*"
            ],
            "js": [
                "content_scripts\/common.js",
                "content_scripts\/init_bilibili.js"
            ],
            "css": [
                "styles\/common.css",
                "styles\/background_bilibili.css"
            ],
            "run_at": "document_end"
        }
    ],
    "browser_action": {
        "default_popup": "html\/index.html"
    },
    "icons": {
        "16": "images\/acfun_17.461358313817px_1188637_easyicon.net.png",
        "32": "images\/acfun_34.922716627635px_1188637_easyicon.net.png",
        "48": "images\/acfun_52.384074941452px_1188637_easyicon.net.png",
        "128": "images\/acfun_139.69086651054px_1188637_easyicon.net.png"
    },
    "permissions": [
        "storage"
    ],
    "minimum_chrome_version": "69.0.3483.0",
    "manifest_version": 2
}