Fill Screen

Resizes the current window to fill the screen without maximizing.

Fill Screen क्या है?

Fill Screen Dai Rees द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Resizes the current window to fill the screen without maximizing."।

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

screenshot

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

crx प्रारूप में Fill Screen एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        Changes the window size to be a non-maximized ("restored") window that fills the current monitor's available workspace.

I wrote this so I could go from a maximized window to a non-maximized (but still 'full screen'-sized) window state with one click.

My motivation was that the tab-bar in Chrome is at the very top of the window, and I run Winamp in Windowshade mode along the top edge of my desktop which blocked access to the tabs - by entering a non-maximized state the tabs are pushed-down and become accessible again.

A word on permissions: this extension needs to run content-scripts to access the `window.screen` object which is not currently exposed through the Chrome Extension API. Because the `activeTab` permission does not apply to the Chrome Start Page (which is under `google.com`) it needs permission to run content-scripts on google.com.                    

एक्सटेंशन की मूल जानकारी

नाम Fill Screen Fill Screen
ID khckgdnndfkofjaofdcmpnkjjomldchd
आधिकारिक URL https://chromewebstore.google.com/detail/fill-screen/khckgdnndfkofjaofdcmpnkjjomldchd
विवरण Resizes the current window to fill the screen without maximizing.
फ़ाइल का आकार 14.49 KB
स्थापना संख्या 317
वर्तमान संस्करण 0.2
अंतिम अपडेट 2016-04-29
प्रकाशन तिथि 2016-04-29
डेवलपर Dai Rees
ईमेल [email protected]
भुगतान के प्रकार free
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Fill Screen",
    "version": "0.2",
    "description": "Resizes the current window to fill the screen without maximizing.",
    "icons": {
        "16": "Icons\/Icon16.png",
        "32": "Icons\/Icon32.png",
        "128": "Icons\/Icon128.png"
    },
    "browser_action": {
        "default_icon": {
            "19": "Icons\/Action-Restore-19.png",
            "38": "Icons\/Action-Restore-38.png"
        },
        "default_title": "Fill Screen"
    },
    "author": "Dai Rees",
    "permissions": [
        "activeTab",
        "https:\/\/www.google.com\/_\/chrome\/newtab*"
    ],
    "background": {
        "scripts": [
            "Background.js"
        ],
        "persistent": false
    }
}