NewTab Editor
Make your new tab an editor.
¿Qué es NewTab Editor?
NewTab Editor es una extensión de Chrome desarrollada por zy0x5f3759df, y su función principal es "Make your new tab an editor.".
Capturas de Pantalla de la Extensión
Descargar Archivo CRX de la Extensión NewTab Editor
Descarga archivos de extensión NewTab Editor en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.
Instrucciones de Uso de la Extensión
🌝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~
Información Básica de la Extensión
Nombre | NewTab Editor |
ID | ffilklcelobcboidfinknighfknimkin |
URL Oficial | https://chromewebstore.google.com/detail/newtab-editor/ffilklcelobcboidfinknighfknimkin |
Descripción | Make your new tab an editor. |
Tamaño del Archivo | 4.73 MB |
Cantidad de Instalaciones | 513 |
Versión Actual | 1.0.0 |
Última Actualización | 2021-05-12 |
Fecha de Publicación | 2021-05-12 |
Desarrollador | zy0x5f3759df |
Correo electrónico | [email protected] |
Tipo de Pago | free |
Idiomas Soportados | 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'" } |