Django Docs Version Switcher
Remembers your Django version on docs.djangoproject.com
What is Django Docs Version Switcher?
Django Docs Version Switcher is a Chrome extension developed by jmckib2, and its main feature is "Remembers your Django version on docs.djangoproject.com".
Extension Screenshots
Download Django Docs Version Switcher Extension CRX File
Download Django Docs Version Switcher extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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
Extension Basic Information
Name | Django Docs Version Switcher |
ID | ikbaalaedidcnibhkibgckbmmcndnmon |
Official URL | https://chromewebstore.google.com/detail/django-docs-version-switc/ikbaalaedidcnibhkibgckbmmcndnmon |
Description | Remembers your Django version on docs.djangoproject.com |
File Size | 15.23 KB |
Installation Count | 89 |
Current Version | 1.3 |
Last Updated | 2018-06-15 |
Publish Date | 2018-06-15 |
Rating | 4.75/5 Total 4 Ratings |
Developer | jmckib2 |
Payment Type | free |
Extension Website | https://github.com/jmckib/django_docs_version_switcher |
Supported Languages | 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" } ] } |