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 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "This extension is a minimalists dream. Simply shift + double click, or shift + scroll to be fully imersed in your website."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Minimalist Fullscreen एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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"
    }
}