Note Tab
Chrome extension for quick notes and calculations in the new tab
Note Tabคืออะไร?
Note Tab เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Yuriy Romadin และคุณลักษณะหลักของมันคือ "Chrome extension for quick notes and calculations in the new tab"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Note Tab
ดาวน์โหลดไฟล์ส่วนขยาย Note Tab ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
Your new tab page will be divided into two blocks: on the left, you have text/code editor for your quick notes or code snippets, on the right side you have "smart" calculator notepad, where you can perform basic math operations.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | Note Tab |
ID | gefmkkebioafinkcmbdpncgnndifcbea |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/note-tab/gefmkkebioafinkcmbdpncgnndifcbea |
คำอธิบาย | Chrome extension for quick notes and calculations in the new tab |
ขนาดไฟล์ | 2.25 MB |
จำนวนการติดตั้ง | 59 |
เวอร์ชันปัจจุบัน | 1.0.1 |
อัปเดตครั้งล่าสุด | 2019-03-08 |
วันที่เผยแพร่ | 2019-03-08 |
คะแนน | 5.00/5 รวมทั้งหมด 2 คะแนน |
ผู้พัฒนา | Yuriy Romadin |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
เว็บไซต์ส่วนขยาย | https://github.com/yuriyromadin/notetab |
URL หน้าช่วยเหลือ | https://github.com/yuriyromadin/notetab |
ภาษาที่รองรับ | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Note Tab", "version": "1.0.1", "manifest_version": 2, "chrome_url_overrides": { "newtab": "index.html" }, "description": "Chrome extension for quick notes and calculations in the new tab", "options_ui": { "page": "options.html", "open_in_tab": false }, "permissions": [ "storage" ], "background": { "scripts": [ "static\/app.background.js" ] }, "browser_action": { "default_icon": "static\/icon-16.png" }, "icons": { "16": "static\/icon-16.png", "48": "static\/icon-48.png", "128": "static\/icon-128.png" } } |