Textnote
TextNote allows users to quickly save notes on particular websites for later viewing.
Qu'est-ce que Textnote ?
Textnote est une extension Chrome développée par http://textnote.io, et sa fonction principale est "TextNote allows users to quickly save notes on particular websites for later viewing.".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Textnote
Téléchargez les fichiers d'extension Textnote 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
TextNote allows users to quickly save notes on particular websites for later viewing. Notes can easily be saved AND shared publicly in groups, or privately with the user themselves. Examples of using this: - Recipe Sites (making notes about recipe's you make!) - Development blogs (Documentation on code becomes out of date so fast, join a group that helps keep this content up to date!) It's quick and free to get started, so start saving those notes today!
Informations de Base sur l'Extension
Nom | |
ID | eijnedhhjnphiiipneibpchndapdkkhd |
URL Officiel | https://chrome.google.com/webstore/detail/textnote/eijnedhhjnphiiipneibpchndapdkkhd |
Description | TextNote allows users to quickly save notes on particular websites for later viewing. |
Taille du Fichier | 135 KB |
Nombre d'Installations | 39 |
Version Actuelle | 0.1.7 |
Dernière Mise à Jour | 2016-04-01 |
Date de Publication | 2016-04-01 |
Évaluation | 3.00/5 Total 2 Évaluations |
Développeur | http://textnote.io |
Type de Paiement | free |
Langues Prises en Charge | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Textnote", "version": "0.1.7", "manifest_version": 2, "description": "TextNote allows users to quickly save notes on particular websites for later viewing.", "icons": { "16": "icon-16.png", "19": "icon.png", "38": "icon-38.png", "48": "icon-48.png", "128": "icon-128.png" }, "browser_action": { "default_icon": "icon.png", "default_title": "TextNote.io", "default_popup": "popup.html" }, "externally_connectable": { "matches": [ "http:\/\/localhost:3000\/*", "*:\/\/textnote.herokuapp.com\/*", "*:\/\/www.textnote.io\/*" ] }, "permissions": [ "storage", "tabs" ], "background": { "persistent": false, "scripts": [ "background.js" ] }, "content_scripts": [ { "run_at": "document_start", "matches": [ "*:\/\/*\/*" ], "css": [ ".\/app\/main.css" ], "js": [ ".\/app\/main.bundle.js" ], "exclude_matches": [ "http:\/\/localhost:3000\/*", "*:\/\/textnote.herokuapp.com\/*", "*:\/\/www.textnote.io\/*" ] }, { "run_at": "document_start", "matches": [ "http:\/\/localhost:3000\/*", "*:\/\/textnote.herokuapp.com\/*", "*:\/\/www.textnote.io\/*" ], "js": [ "auth.js" ] } ] } |