AcFun 剧场模式
将AcFun播放页更改为类似于Youtube的剧场模式
What is AcFun 剧场模式?
AcFun 剧场模式 is a Chrome extension developed by guoyaozhi, and its main feature is "将AcFun播放页更改为类似于Youtube的剧场模式".
Extension Screenshots
Download AcFun 剧场模式 Extension CRX File
Download AcFun 剧场模式 extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
我很喜欢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
Extension Basic Information
Name | AcFun 剧场模式 |
ID | ljmpmclhmholjgekoddnjplfinomoaof |
Official URL | https://chromewebstore.google.com/detail/acfun-%E5%89%A7%E5%9C%BA%E6%A8%A1%E5%BC%8F/ljmpmclhmholjgekoddnjplfinomoaof |
Description | 将AcFun播放页更改为类似于Youtube的剧场模式 |
File Size | 19.83 KB |
Installation Count | 262 |
Current Version | 1.1.4 |
Last Updated | 2020-11-14 |
Publish Date | 2020-04-11 |
Rating | 5.00/5 Total 2 Ratings |
Developer | guoyaozhi |
[email protected] | |
Payment Type | free |
Extension Website | https://github.com/Yzi/AcFun-TheaterMode |
Help Page URL | https://github.com/Yzi/AcFun-TheaterMode/issues |
Supported Languages | 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 } |