magical.ly

A simple chrome extension on OpenAI GPT3 for the lazy ones like me.

什么是magical.ly?

magical.ly是由Bhavin Kamani开发的Chrome扩展程序,该扩展的主要功能是“A simple chrome extension on OpenAI GPT3 for the lazy ones like me.”。

扩展截图

screenshot
screenshot
screenshot
screenshot
screenshot

下载magical.ly扩展crx文件

下载magical.ly扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        Introducing Magically 🔮 - the revolutionary email writing assistant powered by the latest GPT-3 technology. 

Magically is a powerful email writing assistant that is supported by all major mail providers, including Gmail, Outlook, and even Twitter! That's right – you can use Magically to craft professional and persuasive emails and tweets with ease. Simply activate the extension and let Magically do the rest. With its advanced language generation technology and context awareness, you'll be able to write emails and tweets with confidence, knowing that you have the right words to effectively communicate your message. Try Magically today and see the difference it can make in your email and social media communication.

🤯 Tired of struggling to find the right words for effective emails? Let Magically be your personal writing assistant and say goodbye to email stress!

🗣️ Magically's speech recognition feature allows you to dictate your emails, saving time and helping to write flawless emails. It can help to make your emails sound more natural and personalised, which can help to build stronger relationships with your recipients.

🧑‍💼 Magically is a context-aware extension that uses the latest language generation technology to help you write professional and persuasive emails with ease

💻 Simply activate the extension, type in your prompt, and let Magically do the rest. Whether you're trying to:
 - Schedule a meeting 📅
 - Follow up on a request 📩
 - Send a sales pitch 📈
Magically has you covered

🤖 Not only does Magically assist with composing new emails, it also helps you write the perfect reply. Its advanced context awareness allows it to understand the content and tone of your conversation, ensuring your responses are on point

🚀 Try Magically today and watch your productivity soar. Say goodbye to email writing headaches 🤕 and hello to effortless communication! 💌                    

扩展基本信息

名称 magical.ly magical.ly
ID mfkahcffcoidnlldjckapflicnjjkchn
官方URL https://chromewebstore.google.com/detail/magically/mfkahcffcoidnlldjckapflicnjjkchn
简介 A simple chrome extension on OpenAI GPT3 for the lazy ones like me.
文件大小 453 KB
安装次数 119
当前版本 1.0.5
更新时间 2023-06-27
上架时间 2023-01-05
评分 4.00/5 共1次评分
开发者 Bhavin Kamani
电子邮箱 [email protected]
付费类型 free
隐私政策页面URL https://kamanibhavin.github.io/magically.github.io/privacy-policy
支持的语言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "magical.ly",
    "version": "1.0.5",
    "description": "A simple chrome extension on OpenAI GPT3 for the lazy ones like me.",
    "key": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAvpL3TtPpTwuvkEe16C905ZuFm65zLmrd\/a+oEJULYgmRnnPG8wM+JbTPJRDdhSY\/Eva5v6+yvwQdW6ZzHzQq2PMSsIwET0km3iOH8xUF7xVW6vZDPSu\/I9Vzhx\/0LvXYG6caCIV9C9CGcQa1gmnWqs2HQvloeLtcBkIOBitd\/avEVomsZIy\/gnTGRv0Sc0AA4Y8a4bs3IIAGWNZsWXVPkvrsET7TgHks7H5SHD6U4SNX9G70Fm9msh7oWzw8FGPOcrFou4I+kRsEulUM+JTb2QZjvEAUk4cnWojkf6y1WhJqNaGWnXN4JPfTYI0YZ50hhVFTU5bOKb1eh5AGE5tQEwIDAQAB",
    "icons": {
        "16": "icons\/icon-16.png",
        "32": "icons\/icon-32.png",
        "48": "icons\/icon-48.png",
        "128": "icons\/icon-128.png",
        "256": "icons\/icon-256.png"
    },
    "action": {
        "default_icon": {
            "16": "icons\/icon-16.png",
            "32": "icons\/icon-32.png",
            "48": "icons\/icon-48.png",
            "128": "icons\/icon-128.png",
            "256": "icons\/icon-256.png"
        },
        "default_title": "magical.ly",
        "default_popup": "popup.html"
    },
    "permissions": [
        "identity",
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/mail.google.com\/*"
            ],
            "js": [
                "gmail.js"
            ],
            "all_frames": true
        },
        {
            "matches": [
                "https:\/\/twitter.com\/*"
            ],
            "js": [
                "twitter.js"
            ],
            "all_frames": true
        },
        {
            "matches": [
                "https:\/\/outlook.office.com\/*",
                "https:\/\/outlook.live.com\/*"
            ],
            "js": [
                "outlook.js"
            ],
            "all_frames": true
        }
    ],
    "background": {
        "service_worker": "background.js",
        "type": "module"
    }
}