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文件

下载Minimalist Fullscreen扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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"
    }
}