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"입니다.

확장 프로그램 스크린샷

screenshot
screenshot

Spring Docs Read Latest Extension 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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 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"
            ]
        }
    ]
}