GoNotes
Easy, accesible notes on every page.
O que é GoNotes?
GoNotes é uma extensão do Chrome desenvolvida por Unknown, e sua principal característica é "Easy, accesible notes on every page.".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão GoNotes
Baixe arquivos de extensão GoNotes no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
GoNotes is a extension that makes it easy for people to take notes in every tab! Just by inputting a title and a note, users are able to create unique notes and save them on the New Tab page. Right now, GoNotes is still in alpha and still needs a lot of work before it is a fully-fledged project. Any feedback into bugs and new features that would improve the functionality of the app can be left in the comments. Thanks!
Informações Básicas da Extensão
Nome | GoNotes |
ID | lnheclbpjkkoocnpmbobhamfkfpblnlm |
URL Oficial | https://chromewebstore.google.com/detail/gonotes/lnheclbpjkkoocnpmbobhamfkfpblnlm |
Descrição | Easy, accesible notes on every page. |
Tamanho do Arquivo | 15.8 KB |
Contagem de Instalações | 67 |
Versão Atual | 1.0.0 |
Última Atualização | 2019-08-10 |
Data de Publicação | 2019-08-09 |
Desenvolvedor | Unknown |
Tipo de Pagamento | free |
Idiomas Suportados | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "GoNotes", "version": "1.0.0", "description": "Easy, accesible notes on every page.", "permissions": [ "activeTab", "declarativeContent", "storage" ], "background": { "scripts": [ "background.js" ], "persistent": false }, "commands": { "_execute_browser_action": { "suggested_key": { "windows": "Ctrl + Shift + E", "mac": "Command + Shift + E" } } }, "chrome_url_overrides": { "newtab": "newTab.html" }, "browser_action": { "default_icon": { "16": "images\/icon16.png", "32": "images\/icon32.png", "48": "images\/icon48.png", "128": "images\/icon128.png" }, "default_title": "Notes", "default_popup": "popup.html" }, "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'", "icons": { "16": "images\/icon16.png", "32": "images\/icon32.png", "48": "images\/icon48.png", "128": "images\/icon128.png" }, "manifest_version": 2 } |