NewTab Editor
Make your new tab an editor.
NewTab Editorคืออะไร?
NewTab Editor เป็นส่วนขยายของ Chrome ที่พัฒนาโดย zy0x5f3759df และคุณลักษณะหลักของมันคือ "Make your new tab an editor."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย NewTab Editor
ดาวน์โหลดไฟล์ส่วนขยาย NewTab Editor ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
🌝Make your new tab an editor.🌝 Many times we have such troubles that we need to make some temporary notes, but don't know where to write them down. Use notes apps? It's too cumbersome! Use VSCode? Mere text is not enough! NewTabEditor can make your new tab a editor. Tap it and immediately start recording. You can use Markdown or richtext. You can record with title, bold text, emoji, table, code and more. Use it now to make recording easier~
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | NewTab Editor |
ID | ffilklcelobcboidfinknighfknimkin |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/newtab-editor/ffilklcelobcboidfinknighfknimkin |
คำอธิบาย | Make your new tab an editor. |
ขนาดไฟล์ | 4.73 MB |
จำนวนการติดตั้ง | 513 |
เวอร์ชันปัจจุบัน | 1.0.0 |
อัปเดตครั้งล่าสุด | 2021-05-12 |
วันที่เผยแพร่ | 2021-05-12 |
ผู้พัฒนา | zy0x5f3759df |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
ภาษาที่รองรับ | en,zh-CN |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "__MSG_extName__", "homepage_url": "http:\/\/localhost:8080\/", "description": "__MSG_extDescription__", "default_locale": "en", "permissions": [ "unlimitedStorage" ], "icons": { "16": "icons\/16.png", "48": "icons\/48.png", "128": "icons\/128.png" }, "chrome_url_overrides": { "newtab": "editor.html" }, "background": { "scripts": [ "js\/background.js" ], "persistent": false }, "browser_action": { "default_popup": "popup.html", "default_title": "__MSG_extName__", "default_icon": { "19": "icons\/19.png", "38": "icons\/38.png" } }, "options_page": "popup.html", "version": "1.0.0", "content_security_policy": "script-src 'self' ; object-src 'self'" } |