Minimalist Fullscreen

This extension is a minimalists dream. Simply shift + double click, or shift + scroll to be fully imersed in your website.

Minimalist Fullscreen란 무엇입니까?

Minimalist Fullscreen은(는) minimalistrooney에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "This extension is a minimalists dream. Simply shift + double click, or shift + scroll to be fully imersed in your website."입니다.

확장 프로그램 스크린샷

screenshot
screenshot

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

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

확장 프로그램 사용 설명서

                        Shift + Double click or Shift + Scroll anywhere on the screen to Full Screen your chrome browser. Moving your mouse to the top of the page will cancel the effect for a completely seamless full screen integration. 

Popular websites like youtube and developer documentation websites become an immersive experience to browse.


Features:
* Shift + Double click for Full Screen
* Shift + Click the page and scroll to activate minimalist for a more continuous application.
* Fullscreen a youtube video anywhere on the page
* Escape a fullscreen youtube video by simply moving the mouse to the top of the page. No longer needing to click the box in the bottom right hand corner


If you would like to suggest new features please raise them here:
Git hub: https://github.com/phillygogo/Minimalist                    

확장 프로그램 기본 정보

이름 Minimalist Fullscreen Minimalist Fullscreen
ID lgldoaciahomlenlcifbkbbgdhihkboi
공식 URL https://chromewebstore.google.com/detail/minimalist-fullscreen/lgldoaciahomlenlcifbkbbgdhihkboi
설명 This extension is a minimalists dream. Simply shift + double click, or shift + scroll to be fully imersed in your website.
파일 크기 77.75 KB
설치 횟수 51
현재 버전 0.0.0.5
최근 업데이트 2023-12-11
출시 날짜 2022-12-19
평점 5.00/5 총 10 개의 평점
개발자 minimalistrooney
이메일 [email protected]
결제 유형 free
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Minimalist Fullscreen",
    "version": "0.0.0.5",
    "description": "This extension is a minimalists dream. Simply shift + double click, or shift + scroll to be fully imersed in your website.",
    "action": {
        "default_popup": "popup.html"
    },
    "permissions": [
        "scripting",
        "storage"
    ],
    "host_permissions": [
        "http:\/\/*\/",
        "https:\/\/*\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/",
                "https:\/\/*\/*"
            ],
            "css": [
                "\/css\/popup.css"
            ],
            "js": [
                "\/js\/content-script.js"
            ]
        }
    ],
    "background": {
        "service_worker": "js\/background.js"
    },
    "icons": {
        "16": "\/icons\/chromeIcons\/browser-icon-active-16.png",
        "48": "\/icons\/chromeIcons\/browser-icon-active-48.png",
        "128": "\/icons\/chromeIcons\/browser-icon-active-128.png"
    }
}