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 |
官方網址 | 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 |
電子郵箱 | [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" } } |