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 拡張機能の基本情報
| 名前 | |
| 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"
}
} | |