Full Screen

Add fullscreen button to the Chrome toolbar and to the context (right-click) menu

Full Screen란 무엇입니까?

Full Screen은(는) https://openaddons.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Add fullscreen button to the Chrome toolbar and to the context (right-click) menu"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot

Full Screen 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        📚 DESCRIPTION

This is just a full-screen button, added to the toolbar and the context menu. It does exactly the same as the keyboard shortcuts (F11 on Windows or fn+F on Mac). You can change the icon to match your chrome theme and that's it.

I made this because I need to be able to click a button/menu item with the mouse, not all of my browsers come with keyboard. When in full screen, I need the context menu to get back. That's why this extension adds itself in the right-menu also. And that's it.

🛠 OPTIONS

To change the default settings, simply right-click on the extension icon and select "Options". On the settings page, you can change the icon to a different color  (to match your Chrome theme or simply because you don't like the default black color) or even set your own icon.

🔒 PERMISSIONS

Rest assured, this extension doesn't require any special or risky permissions. The only permissions it needs are "contextMenu" and "storage." It doesn't access your data or sites. Its sole purpose is to add the buttons to the toolbar and context menu while saving the selected icon in local storage.                    

확장 프로그램 기본 정보

이름 Full Screen Full Screen
ID joddbgdiaecgbenoeloffehlpclnppfa
공식 URL https://chromewebstore.google.com/detail/full-screen/joddbgdiaecgbenoeloffehlpclnppfa
설명 Add fullscreen button to the Chrome toolbar and to the context (right-click) menu
파일 크기 22.7 KB
설치 횟수 458
현재 버전 2.0
최근 업데이트 2023-09-14
출시 날짜 2019-10-09
평점 3.63/5 총 8 개의 평점
개발자 https://openaddons.com
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://openaddons.com/
도움말 페이지 URL https://openaddons.com/full-screen-button/
개인정보 보호 정책 페이지 URL https://openaddons.com/privacy
지원되는 언어 en,fr
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "__MSG_name__",
    "version": "2.0",
    "description": "__MSG_description__",
    "default_locale": "en",
    "icons": {
        "16": "icon.png",
        "48": "icon-48.png",
        "128": "icon-128.png"
    },
    "permissions": [
        "storage",
        "contextMenus"
    ],
    "background": {
        "service_worker": "background.js"
    },
    "action": {
        "default_popup": "",
        "default_icon": {
            "16": "icon.png",
            "48": "icon-48.png",
            "128": "icon-128.png"
        }
    },
    "options_ui": {
        "page": "settings.html"
    }
}