Fullscreen Magic

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

O que é Fullscreen Magic?

Fullscreen Magic é uma extensão do Chrome desenvolvida por Arik W, e sua principal característica é "Automagically finds a video, game, frame, or other embedded content in a webpage and makes it full screen with a single click".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão Fullscreen Magic

Baixe arquivos de extensão Fullscreen Magic no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        # 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/                    

Informações Básicas da Extensão

Nome Fullscreen Magic Fullscreen Magic
ID agpmfmfpldoabkmhjanenelnnplfcidm
URL Oficial https://chromewebstore.google.com/detail/fullscreen-magic/agpmfmfpldoabkmhjanenelnnplfcidm
Descrição Automagically finds a video, game, frame, or other embedded content in a webpage and makes it full screen with a single click
Tamanho do Arquivo 97.92 KB
Contagem de Instalações 33
Versão Atual 1.0.0
Última Atualização 2023-04-22
Data de Publicação 2023-04-18
Desenvolvedor Arik W
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://github.com/arikw/fullscreen-magic-extension
URL da Página de Ajuda https://github.com/arikw/fullscreen-magic-extension/issues
Idiomas Suportados 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"
    }
}