NewTab Editor
Make your new tab an editor.
NewTab Editor란 무엇입니까?
NewTab Editor은(는) zy0x5f3759df에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Make your new tab an editor."입니다.
확장 프로그램 스크린샷
NewTab Editor 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
🌝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'" } |