Spring Docs Read Latest Extension
Adds link to latest Spring docs to older versions project references
Co to jest Spring Docs Read Latest Extension?
Spring Docs Read Latest Extension to rozszerzenie Chrome opracowane przez Maciej Walkowiak, a jego główną funkcją jest „Adds link to latest Spring docs to older versions project references”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Spring Docs Read Latest Extension
Pobierz pliki rozszerzeń Spring Docs Read Latest Extension w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
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!
Podstawowe informacje o rozszerzeniu
Nazwa | Spring Docs Read Latest Extension |
ID | ccmccpfomgfkbcbfeahhjecddjajhipk |
Oficjalny URL | https://chromewebstore.google.com/detail/spring-docs-read-latest-e/ccmccpfomgfkbcbfeahhjecddjajhipk |
Opis | Adds link to latest Spring docs to older versions project references |
Rozmiar pliku | 309 KB |
Liczba instalacji | 238 |
Aktualna Wersja | 0.0.3 |
Ostatnia Aktualizacja | 2022-12-27 |
Data Publikacji | 2021-04-22 |
Ocena | 5.00/5 Łącznie 1 Oceny |
Deweloper | Maciej Walkowiak |
[email protected] | |
Typ Płatności | free |
Strona Rozszerzenia | https://github.com/maciejwalkowiak/spring-docs-read-latest-extension |
Adres URL Strony Pomocy | https://github.com/maciejwalkowiak/spring-docs-read-latest-extension |
Obsługiwane Języki | 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" ] } ] } |