Automatic Fullscreen on Crunchyroll
Click on the switch buttom, press F11 and stay in your bed ;)
什么是Automatic Fullscreen on Crunchyroll?
Automatic Fullscreen on Crunchyroll是由Unknown开发的Chrome扩展程序,该扩展的主要功能是“Click on the switch buttom, press F11 and stay in your bed ;)”。
扩展截图
下载Automatic Fullscreen on Crunchyroll扩展crx文件
下载Automatic Fullscreen on Crunchyroll扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
This extension automatically makes the crunchyroll video-player fullscreen when you open the page. Github: https://github.com/Coystark/automatic-fullscreen-crunchyroll
扩展基本信息
名称 | Automatic Fullscreen on Crunchyroll |
ID | pcbinggjelhcbebilcmlikomcgiippjb |
官方URL | https://chromewebstore.google.com/detail/automatic-fullscreen-on-c/pcbinggjelhcbebilcmlikomcgiippjb |
简介 | Click on the switch buttom, press F11 and stay in your bed ;) |
文件大小 | 17.22 KB |
安装次数 | 365 |
当前版本 | 0.3 |
更新时间 | 2020-04-12 |
上架时间 | 2020-04-12 |
评分 | 5.00/5 共1次评分 |
开发者 | Unknown |
付费类型 | free |
扩展官网 | https://github.com/Coystark/automatic-fullscreen-crunchyroll |
支持的语言 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Automatic Fullscreen on Crunchyroll", "version": "0.3", "description": "Click on the switch buttom, press F11 and stay in your bed ;)", "permissions": [ "storage" ], "content_scripts": [ { "matches": [ "https:\/\/www.crunchyroll.com\/*\/*", "http:\/\/www.crunchyroll.com\/*\/*" ], "js": [ "content.js" ] } ], "background": { "scripts": [ "background.js" ], "persistant": false }, "browser_action": { "default_title": "Automatic Fullscreen on Crunchyroll", "default_popup": "popup.html", "default_icon": "icons\/icon_disabled_16.png" }, "icons": { "16": "icons\/icon_16.png", "48": "icons\/icon_48.png", "128": "icons\/icon_128.png" } } |