Full Screen Button
Easily switch to full-screen view from toolbar!
Full Screen Buttonとは何ですか?
Full Screen ButtonはSevinaによって開発されたChromeの拡張機能で、その主な機能は「Easily switch to full-screen view from toolbar!」です。
拡張機能のスクリーンショット
Full Screen Button拡張機能のCRXファイルをダウンロード
Full Screen Button拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
Full Screen Button is a simple extension for your browser that helps you full-screen the current tab. There is also an option which let you maximize the active "video" element (if it is playing) instead of the tab. Please note that, you can disable this setting from the option's page. You can also use the keyboard shortcuts to maximize the active tab (Ctrl+Shift+F). If you have a feature request, or found a bug to report, please fill out the bug report form on the add-on's homepage (https://mybrowseraddon.com/fullscreen-button.html).
拡張機能の基本情報
名前 | Full Screen Button |
ID | iokdoigdonjidoklkaonhielnkamibnp |
公式URL | https://chromewebstore.google.com/detail/full-screen-button/iokdoigdonjidoklkaonhielnkamibnp |
説明 | Easily switch to full-screen view from toolbar! |
ファイルサイズ | 25.19 KB |
インストール数 | 2,935 |
現在のバージョン | 0.1.1 |
最終更新日 | 2022-09-02 |
公開日 | 2018-12-08 |
評価 | 4.81/5 合計 36 レビュー |
開発者 | Sevina |
Eメール | [email protected] |
支払い方法 | free |
拡張機能のウェブサイト | https://mybrowseraddon.com/fullscreen-button.html |
ヘルプページのURL | https://mybrowseraddon.com/fullscreen-button.html |
プライバシーポリシーページのURL | https://mybrowseraddon.com/privacy-policy/developer/sevina.html |
対応言語 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "version": "0.1.1", "manifest_version": 3, "offline_enabled": true, "name": "Full Screen Button", "permissions": [ "storage", "scripting", "activeTab" ], "description": "Easily switch to full-screen view from toolbar!", "homepage_url": "https:\/\/mybrowseraddon.com\/fullscreen-button.html", "background": { "service_worker": "background.js" }, "options_ui": { "open_in_tab": true, "page": "data\/options\/options.html" }, "action": { "default_title": "Full Screen Button", "default_icon": { "16": "data\/icons\/16.png", "32": "data\/icons\/32.png", "48": "data\/icons\/48.png", "64": "data\/icons\/64.png" } }, "commands": { "toggle-fullscreen": { "description": "Toggle Fullscreen", "suggested_key": { "mac": "Command+Shift+F", "default": "Ctrl+Shift+F" } } }, "icons": { "16": "data\/icons\/16.png", "32": "data\/icons\/32.png", "48": "data\/icons\/48.png", "64": "data\/icons\/64.png", "128": "data\/icons\/128.png" } } |