Django Docs Version Switcher

Remembers your Django version on docs.djangoproject.com

Cos'è Django Docs Version Switcher?

Django Docs Version Switcher è un'estensione di Chrome sviluppata da jmckib2, e la sua funzione principale è "Remembers your Django version on docs.djangoproject.com".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Django Docs Version Switcher

Scarica i file di estensione Django Docs Version Switcher 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

                        An extension that remembers the last version of Django you chose on docs.djangoproject.com. Then, whenever you visit the docs, you'll be redirected to that version.

https://github.com/jmckib/django_docs_version_switcher                    

Informazioni di Base sull'Estensione

Nome Django Docs Version Switcher Django Docs Version Switcher
ID ikbaalaedidcnibhkibgckbmmcndnmon
URL Ufficiale https://chromewebstore.google.com/detail/django-docs-version-switc/ikbaalaedidcnibhkibgckbmmcndnmon
Descrizione Remembers your Django version on docs.djangoproject.com
Dimensione del File 15.23 KB
Conteggio Installazioni 89
Versione Corrente 1.3
Ultimo Aggiornamento 2018-06-15
Data di Pubblicazione 2018-06-15
Valutazione 4.75/5 Totale 4 Valutazioni
Sviluppatore jmckib2
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/jmckib/django_docs_version_switcher
Lingue Supportate en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Django Docs Version Switcher",
    "description": "Remembers your Django version on docs.djangoproject.com",
    "version": "1.3",
    "icons": {
        "48": "images\/icon48.png",
        "128": "images\/icon128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/docs.djangoproject.com\/*"
            ],
            "js": [
                "version_switcher.js"
            ],
            "css": [
                "version_switcher.css"
            ],
            "run_at": "document_start"
        }
    ]
}