Fill Screen

Resizes the current window to fill the screen without maximizing.

Fill Screen là gì?

Fill Screen là một tiện ích mở rộng Chrome được phát triển bởi Dai Rees, và tính năng chính của nó là "Resizes the current window to fill the screen without maximizing.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Fill Screen

Tải xuống các tệp mở rộng Fill Screen dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Fill Screen Fill Screen
ID khckgdnndfkofjaofdcmpnkjjomldchd
URL Chính Thức https://chromewebstore.google.com/detail/fill-screen/khckgdnndfkofjaofdcmpnkjjomldchd
Mô tả Resizes the current window to fill the screen without maximizing.
Kích Thước Tệp 14.49 KB
Số Lần Cài Đặt 317
Phiên Bản Hiện Tại 0.2
Cập Nhật Lần Cuối 2016-04-29
Ngày Phát Hành 2016-04-29
Nhà Phát Triển Dai Rees
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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
    }
}