Spring Docs Read Latest Extension

Adds link to latest Spring docs to older versions project references

Cos'è Spring Docs Read Latest Extension?

Spring Docs Read Latest Extension è un'estensione di Chrome sviluppata da Maciej Walkowiak, e la sua funzione principale è "Adds link to latest Spring docs to older versions project references".

Screenshot dell'Estensione

screenshot
screenshot

Scarica il file CRX dell'estensione Spring Docs Read Latest Extension

Scarica i file di estensione Spring Docs Read Latest Extension in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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!                    

Informazioni di Base sull'Estensione

Nome Spring Docs Read Latest Extension Spring Docs Read Latest Extension
ID ccmccpfomgfkbcbfeahhjecddjajhipk
URL Ufficiale https://chromewebstore.google.com/detail/spring-docs-read-latest-e/ccmccpfomgfkbcbfeahhjecddjajhipk
Descrizione Adds link to latest Spring docs to older versions project references
Dimensione del File 309 KB
Conteggio Installazioni 238
Versione Corrente 0.0.3
Ultimo Aggiornamento 2022-12-27
Data di Pubblicazione 2021-04-22
Valutazione 5.00/5 Totale 1 Valutazioni
Sviluppatore Maciej Walkowiak
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/maciejwalkowiak/spring-docs-read-latest-extension
URL della Pagina di Aiuto https://github.com/maciejwalkowiak/spring-docs-read-latest-extension
Lingue Supportate 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"
            ]
        }
    ]
}