Laravel Doc Pin
Always load your preferred Laravel documentation version!
Что такое Laravel Doc Pin?
Laravel Doc Pin - это расширение Chrome, разработанное cmorrell.com, и его основная функция - "Always load your preferred Laravel documentation version!".
Снимки экрана расширения
Скачать файл CRX расширения Laravel Doc Pin
Скачайте файлы расширений Laravel Doc Pin в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
Automatically redirect to your preferred version of the Laravel documentation — if you set your preferred version to 5.4 and click a link to /docs/5.1/routing Chrome will automatically load /docs/5.4/routing.
Основная информация о расширении
Название | Laravel Doc Pin |
ID | eofhmgcknfjdcihcbpnghkoipjcngpjp |
Официальный URL | https://chromewebstore.google.com/detail/laravel-doc-pin/eofhmgcknfjdcihcbpnghkoipjcngpjp |
Описание | Always load your preferred Laravel documentation version! |
Размер файла | 20.41 KB |
Количество установок | 53 |
Текущая Версия | 1.0.1 |
Последнее Обновление | 2017-05-19 |
Дата публикации | 2017-05-19 |
Рейтинг | 5.00/5 Всего 2 оценок |
Разработчик | cmorrell.com |
Тип оплаты | free |
Поддерживаемые языки | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Laravel Doc Pin", "version": "1.0.1", "description": "Always load your preferred Laravel documentation version!", "permissions": [ "webRequest", "webRequestBlocking", "https:\/\/laravel.com\/docs\/*", "storage", "declarativeContent" ], "background": { "scripts": [ "extension.js" ] }, "manifest_version": 2, "options_ui": { "page": "options.html", "chrome_style": true }, "page_action": { "default_icon": { "16": "icons\/icon16.png", "19": "icons\/icon19.png", "48": "icons\/icon48.png", "128": "icons\/icon128.png", "256": "icons\/icon256.png" }, "default_title": "Laravel Doc Pin" } } |