Minimalist Fullscreen

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

Qu'est-ce que Minimalist Fullscreen ?

Minimalist Fullscreen est une extension Chrome développée par minimalistrooney, et sa fonction principale est "This extension is a minimalists dream. Simply shift + double click, or shift + scroll to be fully imersed in your website.".

Captures d'Écran de l'Extension

screenshot
screenshot

Télécharger le fichier CRX de l'extension Minimalist Fullscreen

Téléchargez les fichiers d'extension Minimalist Fullscreen au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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                    

Informations de Base sur l'Extension

Nom Minimalist Fullscreen Minimalist Fullscreen
ID lgldoaciahomlenlcifbkbbgdhihkboi
URL Officiel https://chromewebstore.google.com/detail/minimalist-fullscreen/lgldoaciahomlenlcifbkbbgdhihkboi
Description This extension is a minimalists dream. Simply shift + double click, or shift + scroll to be fully imersed in your website.
Taille du Fichier 77.75 KB
Nombre d'Installations 51
Version Actuelle 0.0.0.5
Dernière Mise à Jour 2023-12-11
Date de Publication 2022-12-19
Évaluation 5.00/5 Total 10 Évaluations
Développeur minimalistrooney
Email [email protected]
Type de Paiement free
Langues Prises en Charge 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"
    }
}