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是由Maciej Walkowiak开发的Chrome扩展程序,该扩展的主要功能是“Adds link to latest Spring docs to older versions project references”。
扩展截图
下载Spring Docs Read Latest Extension扩展crx文件
下载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" ] } ] } |