Textnote
TextNote allows users to quickly save notes on particular websites for later viewing.
Textnoteとは何ですか?
Textnoteはhttp://textnote.ioによって開発されたChromeの拡張機能で、その主な機能は「TextNote allows users to quickly save notes on particular websites for later viewing.」です。
拡張機能のスクリーンショット
Textnote拡張機能のCRXファイルをダウンロード
Textnote拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
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!
拡張機能の基本情報
名前 | |
ID | eijnedhhjnphiiipneibpchndapdkkhd |
公式URL | https://chrome.google.com/webstore/detail/textnote/eijnedhhjnphiiipneibpchndapdkkhd |
説明 | TextNote allows users to quickly save notes on particular websites for later viewing. |
ファイルサイズ | 135 KB |
インストール数 | 39 |
現在のバージョン | 0.1.7 |
最終更新日 | 2016-04-01 |
公開日 | 2016-04-01 |
評価 | 3.00/5 合計 2 レビュー |
開発者 | http://textnote.io |
支払い方法 | free |
対応言語 | 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" ] } ] } |