Short Cut for URL mapper
This extension will translate the URL in address bar
Что такое Short Cut for URL mapper?
Short Cut for URL mapper - это расширение Chrome, разработанное lwpro2, и его основная функция - "This extension will translate the URL in address bar".
Снимки экрана расширения
Скачать файл CRX расширения Short Cut for URL mapper
Скачайте файлы расширений Short Cut for URL mapper в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
Tired of remembering the URLs ? Short Cut for URL mapper would enable you to configure the keyword to long URL mapping.
Основная информация о расширении
Название | Short Cut for URL mapper |
ID | lafchflokhmpcoaondfeffplkdnoaelh |
Официальный URL | https://chromewebstore.google.com/detail/short-cut-for-url-mapper/lafchflokhmpcoaondfeffplkdnoaelh |
Описание | This extension will translate the URL in address bar |
Размер файла | 629 KB |
Количество установок | 17 |
Текущая Версия | 1.0 |
Последнее Обновление | 2016-06-11 |
Дата публикации | 2016-06-11 |
Рейтинг | 5.00/5 Всего 2 оценок |
Разработчик | lwpro2 |
Электронная почта | [email protected] |
Тип оплаты | free |
Поддерживаемые языки | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Short Cut for URL mapper", "description": "This extension will translate the URL in address bar", "version": "1.0", "browser_action": { "default_icon": "icon.png", "default_popup": "popup.html" }, "background": { "persistent": true, "scripts": [ "background.js" ] }, "commands": { "toggle": { "suggested_key": { "default": "Alt+Shift+A", "mac": "Command+Shift+Y" }, "description": "Display Id and URL of the current open\/active tab.", "global": true } }, "omnibox": { "keyword": "sc" }, "permissions": [ "tabs", "activeTab", "storage", "http:\/\/*.google.com\/", "https:\/\/*.google.com\/" ] } |