Spring Docs Read Latest Extension
Adds link to latest Spring docs to older versions project references
Что такое Spring Docs Read Latest Extension?
Spring Docs Read Latest Extension - это расширение Chrome, разработанное Maciej Walkowiak, и его основная функция - "Adds link to latest Spring docs to older versions project references".
Снимки экрана расширения
Скачать файл CRX расширения Spring Docs Read Latest Extension
Скачайте файлы расширений Spring Docs Read Latest Extension в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
When searching for Spring Framework or Spring Boot docs, we often end up on the old version docs. With this extension, old reference gets a link at the top of the page taking you to the latest and greatest Spring docs!
Основная информация о расширении
Название | Spring Docs Read Latest Extension |
ID | ccmccpfomgfkbcbfeahhjecddjajhipk |
Официальный URL | https://chromewebstore.google.com/detail/spring-docs-read-latest-e/ccmccpfomgfkbcbfeahhjecddjajhipk |
Описание | Adds link to latest Spring docs to older versions project references |
Размер файла | 309 KB |
Количество установок | 238 |
Текущая Версия | 0.0.3 |
Последнее Обновление | 2022-12-27 |
Дата публикации | 2021-04-22 |
Рейтинг | 5.00/5 Всего 1 оценок |
Разработчик | Maciej Walkowiak |
Электронная почта | [email protected] |
Тип оплаты | free |
Официальный сайт расширения | https://github.com/maciejwalkowiak/spring-docs-read-latest-extension |
URL страницы помощи | https://github.com/maciejwalkowiak/spring-docs-read-latest-extension |
Поддерживаемые языки | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Spring Docs Read Latest Extension", "version": "0.0.3", "manifest_version": 2, "description": "Adds link to latest Spring docs to older versions project references", "homepage_url": "http:\/\/github.com\/maciejwalkowiak", "icons": { "16": "icons\/icon16.png", "48": "icons\/icon48.png", "128": "icons\/icon128.png" }, "default_locale": "en", "permissions": [ "https:\/\/docs.spring.io\/" ], "content_scripts": [ { "matches": [ "https:\/\/docs.spring.io\/*" ], "css": [ "src\/inject\/inject.css" ] }, { "matches": [ "https:\/\/docs.spring.io\/**" ], "js": [ "src\/inject\/inject.js" ] } ] } |