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 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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 |
이메일 | [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" } } |