Developer Notes
See and post notes on developer documentation.
¿Qué es Developer Notes?
Developer Notes es una extensión de Chrome desarrollada por Developer Notes, y su función principal es "See and post notes on developer documentation.".
Capturas de Pantalla de la Extensión
Descargar Archivo CRX de la Extensión Developer Notes
Descarga archivos de extensión Developer Notes en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.
Instrucciones de Uso de la Extensión
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.
Información Básica de la Extensión
Nombre | Developer Notes |
ID | fchdfdnnpkphopmdaochdfnmcahndmnb |
URL Oficial | https://chromewebstore.google.com/detail/developer-notes/fchdfdnnpkphopmdaochdfnmcahndmnb |
Descripción | See and post notes on developer documentation. |
Tamaño del Archivo | 31.03 KB |
Cantidad de Instalaciones | 1,412 |
Versión Actual | 1.0.4 |
Última Actualización | 2023-03-09 |
Fecha de Publicación | 2020-04-05 |
Calificación | 4.75/5 Total de 16 Calificaciones |
Desarrollador | Developer Notes |
Correo electrónico | [email protected] |
Tipo de Pago | free |
Sitio Web de la Extensión | https://github.com/Developer-Notes-Extension |
URL de la Página de Ayuda | https://github.com/orgs/Developer-Notes-Extension/discussions |
Idiomas Soportados | 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" } |