Fill Screen
Resizes the current window to fill the screen without maximizing.
Fill Screen란 무엇입니까?
Fill Screen은(는) Dai Rees에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Resizes the current window to fill the screen without maximizing."입니다.
확장 프로그램 스크린샷
Fill Screen 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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 |
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 } } |