Developer Notes
See and post notes on developer documentation.
Developer Notes란 무엇입니까?
Developer Notes은(는) Developer Notes에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "See and post notes on developer documentation."입니다.
확장 프로그램 스크린샷
Developer Notes 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Shared user-contributed notes, curated for accuracy and relevance, with hundreds of notes added by dozens of contributors, covering usage, relevant examples, references, and gotchas. This extension supports: • Unity Manual and Scripting Reference • Unity Documentation • Unity Package Documentation • Unity Multiplayer Documentation • Unreal Engine Documentation • Unreal Python API Documentation • Wwise Documentation This extension uses Giscus (https://github.com/giscus/giscus) to link comments to GitHub discussions. Disclaimer: This is an unofficial extension and isn't affiliated with or endorsed by Unity Technologies, Epic Games, or Audiokinetic.
확장 프로그램 기본 정보
이름 | Developer Notes |
ID | fchdfdnnpkphopmdaochdfnmcahndmnb |
공식 URL | https://chromewebstore.google.com/detail/developer-notes/fchdfdnnpkphopmdaochdfnmcahndmnb |
설명 | See and post notes on developer documentation. |
파일 크기 | 31.03 KB |
설치 횟수 | 1,412 |
현재 버전 | 1.0.4 |
최근 업데이트 | 2023-03-09 |
출시 날짜 | 2020-04-05 |
평점 | 4.75/5 총 16 개의 평점 |
개발자 | Developer Notes |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://github.com/Developer-Notes-Extension |
도움말 페이지 URL | https://github.com/orgs/Developer-Notes-Extension/discussions |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Developer Notes", "version": "1.0.4", "description": "See and post notes on developer documentation.", "short_name": "Dev Notes", "icons": { "16": "icons\/icon16.png", "32": "icons\/icon32.png", "48": "icons\/icon48.png", "96": "icons\/icon96.png", "64": "icons\/icon64.png", "128": "icons\/icon128.png" }, "action": { "default_popup": "content\/html\/upgrade_popup.html" }, "permissions": [], "host_permissions": [], "background": { "service_worker": "content\/js\/worker.js" }, "content_scripts": [ { "matches": [ "https:\/\/docs.unity3d.com\/*", "https:\/\/docs.unity.com\/*", "https:\/\/docs-multiplayer.unity3d.com\/*", "https:\/\/docs.unrealengine.com\/*", "https:\/\/www.audiokinetic.com\/*" ], "js": [ "content\/js\/content.js" ], "run_at": "document_idle" } ], "key": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAm0W2b1J6g2lMYyt0otuy+7mFsyhNG795S8cs1L50W9bEPLRw6vEqYeCpc4\/bvo\/xccI9RzGbWy4UY820dinlQekwfH1woYOdBHmErBn5NYNsgCxTeY7ncLQRzn9LcMYW06qurRiKFZvgx6mLvvDPloC\/KTIxwJvgHPF477iheju80znvNmOt5wGatq\/ZB2TdeZcOALYLnwlsmsaxZVxxfnRmy0cbLHsgOruVeKU2YHcU74IECIk7DXdy4MGnoPDwSLAjDomh3j2AjSpGHmaSBVyrfK2R\/L\/rEC0v\/8h3vAahuzIYgwHYOqU+tfQ5bD6tJ4CZE5Dff+o5mMs1VvI5dQIDAQAB" } |