Textnote
TextNote allows users to quickly save notes on particular websites for later viewing.
Textnoteคืออะไร?
Textnote เป็นส่วนขยายของ Chrome ที่พัฒนาโดย http://textnote.io และคุณลักษณะหลักของมันคือ "TextNote allows users to quickly save notes on particular websites for later viewing."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Textnote
ดาวน์โหลดไฟล์ส่วนขยาย 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" ] } ] } |