shortcut
shortcut to most popular sites
Что такое shortcut?
shortcut - это расширение Chrome, разработанное eranziman, и его основная функция - "shortcut to most popular sites".
Снимки экрана расширения
Скачать файл CRX расширения shortcut
Скачайте файлы расширений shortcut в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
Aren't you just tired of typing over and over again the same web site addresses: "https://www.google.co.il/", "https://www.facebook.com"/ect... Here you have all these links in one convenient small pop-up.
Основная информация о расширении
Название | |
ID | pneeikgjlojkbjpkennpifdhljeniopj |
Официальный URL | https://chrome.google.com/webstore/detail/shortcut/pneeikgjlojkbjpkennpifdhljeniopj |
Описание | shortcut to most popular sites |
Размер файла | 58.95 KB |
Количество установок | 277 |
Текущая Версия | 1.0 |
Последнее Обновление | 2014-02-27 |
Дата публикации | 2014-02-27 |
Рейтинг | 4.57/5 Всего 7 оценок |
Разработчик | eranziman |
Электронная почта | [email protected] |
Тип оплаты | free |
Поддерживаемые языки | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "shortcut", "description": "shortcut to most popular sites", "version": "1.0", "manifest_version": 2, "background": { "scripts": [ "background.js" ], "persistent": false }, "icons": { "16": "icon16.png", "48": "icon48.png", "128": "icon128.png" }, "browser_action": { "default_icon": "icon16.png", "default_popup": "browser_action.html" }, "permissions": [ "tabs" ], "commands": { "toggle-feature": { "suggested_key": { "default": "Ctrl+Shift+Y" }, "description": "Send a 'toggle-feature' event to the extension" }, "_execute_browser_action": { "suggested_key": { "default": "Ctrl+Shift+N", "mac": "MacCtrl+Shift+N" } } } } |