Polypane helper
Open the current page or links in Polypane, the developer tool for responsive web development and design.
Что такое Polypane helper?
Polypane helper - это расширение Chrome, разработанное https://polypane.app, и его основная функция - "Open the current page or links in Polypane, the developer tool for responsive web development and design.".
Снимки экрана расширения
Скачать файл CRX расширения Polypane helper
Скачайте файлы расширений Polypane helper в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
Polypane is a browser built from the ground up to create and test websites and apps. For developers, designers, product managers, QA and anyone that works on the web. Using the Polypane helper, you can open the current page in Polypane using the button in your task bar, by pressing alt+ p or by right clicking any link to open that URL in Polypane
Основная информация о расширении
Название | Polypane helper |
ID | eofbapfmbfmpeplodnehlkkgpkklmapp |
Официальный URL | https://chromewebstore.google.com/detail/polypane-helper/eofbapfmbfmpeplodnehlkkgpkklmapp |
Описание | Open the current page or links in Polypane, the developer tool for responsive web development and design. |
Размер файла | 22.23 KB |
Количество установок | 3,875 |
Текущая Версия | 1.5.0 |
Последнее Обновление | 2023-10-25 |
Дата публикации | 2019-11-18 |
Рейтинг | 5.00/5 Всего 4 оценок |
Разработчик | https://polypane.app |
Электронная почта | [email protected] |
Тип оплаты | free |
Официальный сайт расширения | https://polypane.app |
URL страницы помощи | https://polypane.app/support |
URL страницы политики конфиденциальности | https://firstversionist.com/privacy |
Поддерживаемые языки | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Polypane helper", "version": "1.5.0", "manifest_version": 2, "description": "Open the current page or links in Polypane, the developer tool for responsive web development and design.", "homepage_url": "https:\/\/polypane.app", "icons": { "16": "icons\/icon16.png", "48": "icons\/icon48.png", "128": "icons\/icon128.png" }, "background": { "scripts": [ "src\/open.js" ], "persistent": true }, "permissions": [ "activeTab", "tabs", "contextMenus" ], "browser_action": { "default_icon": "icons\/icon19.png", "default_title": "Open current tab in Polypane (Alt + P)" }, "commands": { "open-in-polypane": { "suggested_key": { "default": "Alt+P" }, "description": "Open current tab in Polypane" } } } |