Fullscreen Magic

Automagically finds a video, game, frame, or other embedded content in a webpage and makes it full screen with a single click

Fullscreen Magic란 무엇입니까?

Fullscreen Magic은(는) Arik W에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Automagically finds a video, game, frame, or other embedded content in a webpage and makes it full screen with a single click"입니다.

확장 프로그램 스크린샷

screenshot

Fullscreen Magic 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        # Fullscreen Magic

Fullscreen Magic will automatically find the most relevant element of a webpage and show it to you in a full screen. Fully enjoy videos, games, pdfs, and other embedded content with just one click. No more distractions, no more zooming in and out, no more hassle. Just pure magic.

## Features

- Works for videos (YouTube, Facebook, Twitter, etc.), iframes, simple online games, canvas elements, PDF viewers and other embedded content
- Detects the element of interest automatically and shows it in full screen mode
- Supports keyboard shortcuts and mouse gestures for easy navigation
- Compatible with Chrome, Firefox and Edge browsers

## Usage

To use Fullscreen Magic, follow these steps:

- Visit any webpage that contains an element you want to view in full screen mode
- Click on the Fullscreen Magic icon in the toolbar
- Enjoy the full screen experience
- To exit full screen mode, press F11 or Esc on your keyboard

## Source Code and License

Fullscreen Magic is open sourced and licensed under the MIT License.
See https://github.com/arikw/fullscreen-magic-extension/                    

확장 프로그램 기본 정보

이름 Fullscreen Magic Fullscreen Magic
ID agpmfmfpldoabkmhjanenelnnplfcidm
공식 URL https://chromewebstore.google.com/detail/fullscreen-magic/agpmfmfpldoabkmhjanenelnnplfcidm
설명 Automagically finds a video, game, frame, or other embedded content in a webpage and makes it full screen with a single click
파일 크기 97.92 KB
설치 횟수 33
현재 버전 1.0.0
최근 업데이트 2023-04-22
출시 날짜 2023-04-18
개발자 Arik W
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/arikw/fullscreen-magic-extension
도움말 페이지 URL https://github.com/arikw/fullscreen-magic-extension/issues
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Fullscreen Magic",
    "version": "1.0.0",
    "description": "Automagically finds a video, game, frame, or other embedded content in a webpage and makes it full screen with a single click",
    "permissions": [
        "activeTab",
        "scripting"
    ],
    "action": {
        "default_title": "Click to fullscreen"
    },
    "background": {
        "service_worker": "main.js"
    },
    "web_accessible_resources": [
        {
            "matches": [
                ""
            ],
            "resources": [
                "utils.js"
            ]
        }
    ],
    "icons": {
        "16": "\/icons\/16.png",
        "32": "\/icons\/32.png",
        "48": "\/icons\/48.png",
        "128": "\/icons\/128.png"
    }
}