Django Docs Version Switcher
Remembers your Django version on docs.djangoproject.com
Django Docs Version Switcher란 무엇입니까?
Django Docs Version Switcher은(는) jmckib2에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Remembers your Django version on docs.djangoproject.com"입니다.
확장 프로그램 스크린샷
Django Docs Version Switcher 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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
확장 프로그램 기본 정보
이름 | Django Docs Version Switcher |
ID | ikbaalaedidcnibhkibgckbmmcndnmon |
공식 URL | https://chromewebstore.google.com/detail/django-docs-version-switc/ikbaalaedidcnibhkibgckbmmcndnmon |
설명 | Remembers your Django version on docs.djangoproject.com |
파일 크기 | 15.23 KB |
설치 횟수 | 89 |
현재 버전 | 1.3 |
최근 업데이트 | 2018-06-15 |
출시 날짜 | 2018-06-15 |
평점 | 4.75/5 총 4 개의 평점 |
개발자 | jmckib2 |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://github.com/jmckib/django_docs_version_switcher |
지원되는 언어 | 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" } ] } |