Easy Window Resize

Resize window with a keystroke.

Easy Window Resize란 무엇입니까?

Easy Window Resize은(는) https://serdar.work에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Resize window with a keystroke."입니다.

확장 프로그램 스크린샷

screenshot

Easy Window Resize 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        - Resizes the active browser window to the predefined list of sizes.

- Requires no special permissions.

- Use the default keyboard shortcut Ctrl+Shift+A (Command+Shift+A for Mac) to resize to the next window size in your list. Keep using the shortcut to rotate window sizes.

- You can add and remove sizes in the window sizes list. Go to extension options to do that.

- You can change the shortcut. Use "Keyboard shortcuts" in the Chrome extension settings to do that.

UPDATES

- Menu added.

- You can add the current window size using the "Add Current Window Size" button in the options page.                    

확장 프로그램 기본 정보

이름 Easy Window Resize Easy Window Resize
ID cfpenpohaapdgnkglcbgjiooipcbcebi
공식 URL https://chromewebstore.google.com/detail/easy-window-resize/cfpenpohaapdgnkglcbgjiooipcbcebi
설명 Resize window with a keystroke.
파일 크기 46.42 KB
설치 횟수 10,000
현재 버전 1.1.0
최근 업데이트 2021-03-27
출시 날짜 2020-06-16
평점 3.92/5 총 38 개의 평점
개발자 https://serdar.work
이메일 [email protected]
결제 유형 free
개인정보 보호 정책 페이지 URL https://serdar.work/chrome-extensions/privacy-policy.html
지원되는 언어 en,tr
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "__MSG_extName__",
    "version": "1.1.0",
    "manifest_version": 2,
    "description": "__MSG_extDescription__",
    "icons": {
        "128": "icon-128.png"
    },
    "default_locale": "en",
    "browser_action": {
        "default_popup": "popup.html"
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "commands": {
        "next-window-size": {
            "suggested_key": {
                "default": "Ctrl+Shift+A",
                "mac": "Command+Shift+A"
            },
            "description": "Next Window Size"
        }
    },
    "homepage_url": "http:\/\/serdar.work",
    "permissions": [
        "storage"
    ],
    "options_page": "options.html"
}