Spring Docs Read Latest Extension
Adds link to latest Spring docs to older versions project references
What is Spring Docs Read Latest Extension?
Spring Docs Read Latest Extension is a Chrome extension developed by Maciej Walkowiak, and its main feature is "Adds link to latest Spring docs to older versions project references".
Extension Screenshots
Download Spring Docs Read Latest Extension Extension CRX File
Download Spring Docs Read Latest Extension extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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!
Extension Basic Information
Name | Spring Docs Read Latest Extension |
ID | ccmccpfomgfkbcbfeahhjecddjajhipk |
Official URL | https://chromewebstore.google.com/detail/spring-docs-read-latest-e/ccmccpfomgfkbcbfeahhjecddjajhipk |
Description | Adds link to latest Spring docs to older versions project references |
File Size | 309 KB |
Installation Count | 238 |
Current Version | 0.0.3 |
Last Updated | 2022-12-27 |
Publish Date | 2021-04-22 |
Rating | 5.00/5 Total 1 Ratings |
Developer | Maciej Walkowiak |
[email protected] | |
Payment Type | free |
Extension Website | https://github.com/maciejwalkowiak/spring-docs-read-latest-extension |
Help Page URL | https://github.com/maciejwalkowiak/spring-docs-read-latest-extension |
Supported Languages | 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" ] } ] } |