NewTab Editor
Make your new tab an editor.
什麼是NewTab Editor?
NewTab Editor是由zy0x5f3759df開發的Chrome擴展程式,該擴展的主要功能是“Make your new tab an editor.”。
擴展截圖
下載NewTab Editor擴展crx文件
下載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 |
官方網址 | 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'" } |