Web Notes
Allows user to stick notes for specific url.
O que é Web Notes?
Web Notes é uma extensão do Chrome desenvolvida por https://sunnysinghdev.blogspot.com, e sua principal característica é "Allows user to stick notes for specific url.".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Web Notes
Baixe arquivos de extensão Web Notes 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
Web Notes is a chrome extension that allows user to save notes based on a part(tag) of a url. So whenever you visit the url it will show notes saved related to tag in the url.
Informações Básicas da Extensão
Nome | Web Notes |
ID | lhoaebkagfpaglcedmehlkbmchagmimj |
URL Oficial | https://chromewebstore.google.com/detail/web-notes/lhoaebkagfpaglcedmehlkbmchagmimj |
Descrição | Allows user to stick notes for specific url. |
Tamanho do Arquivo | 37.45 KB |
Contagem de Instalações | 254 |
Versão Atual | 0.1 |
Última Atualização | 2018-01-19 |
Data de Publicação | 2018-01-18 |
Classificação | 5.00/5 Total de 1 Avaliações |
Desenvolvedor | https://sunnysinghdev.blogspot.com |
Tipo de Pagamento | free |
Idiomas Suportados | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Web Notes", "version": "0.1", "description": "Allows user to stick notes for specific url.", "background": { "scripts": [ "background.js" ] }, "content_scripts": [ { "matches": [ "https:\/\/*\/*", "http:\/\/*\/*" ], "js": [ "jquery-3.2.1.min.js", "content.js" ] } ], "permissions": [ "storage", "tabs", "activeTab" ], "browser_action": { "default_icon": "icon.png", "default_popup": "popup.html" }, "commands": { "toggle-feature": { "suggested_key": { "default": "Ctrl+Shift+0", "mac": "Command+Shift+0" }, "description": "Toggle the helpcenter screen", "global": true }, "_execute_browser_action": { "suggested_key": { "windows": "Ctrl+Shift+9", "mac": "Command+Shift+9", "chromeos": "Ctrl+Shift+9", "linux": "Ctrl+Shift+9" } } } } |