GoNotes
Easy, accesible notes on every page.
Qu'est-ce que GoNotes ?
GoNotes est une extension Chrome développée par Unknown, et sa fonction principale est "Easy, accesible notes on every page.".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension GoNotes
Téléchargez les fichiers d'extension GoNotes au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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!
Informations de Base sur l'Extension
Nom | GoNotes |
ID | lnheclbpjkkoocnpmbobhamfkfpblnlm |
URL Officiel | https://chromewebstore.google.com/detail/gonotes/lnheclbpjkkoocnpmbobhamfkfpblnlm |
Description | Easy, accesible notes on every page. |
Taille du Fichier | 15.8 KB |
Nombre d'Installations | 67 |
Version Actuelle | 1.0.0 |
Dernière Mise à Jour | 2019-08-10 |
Date de Publication | 2019-08-09 |
Développeur | Unknown |
Type de Paiement | free |
Langues Prises en Charge | 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 } |