Easy Window Resize
Resize window with a keystroke.
Что такое Easy Window Resize?
Easy Window Resize - это расширение Chrome, разработанное https://serdar.work, и его основная функция - "Resize window with a keystroke.".
Снимки экрана расширения
Скачать файл CRX расширения Easy Window Resize
Скачайте файлы расширений Easy Window Resize в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
- 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. Основная информация о расширении
| Название | |
| 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"
} | |