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文件

下載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 Spring Docs Read Latest Extension
ID ccmccpfomgfkbcbfeahhjecddjajhipk
官方網址 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"
            ]
        }
    ]
}