NewTab Editor
Make your new tab an editor.
NewTab Editor क्या है?
NewTab Editor zy0x5f3759df द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Make your new tab an editor."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में NewTab Editor एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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'" } |