AI Anywhere for ChatGPT

ChatGPT enhancer - adds context menu, keyboard shortcuts, history and more!

AI Anywhere for ChatGPT क्या है?

AI Anywhere for ChatGPT https://fastaddons.com द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "ChatGPT enhancer - adds context menu, keyboard shortcuts, history and more!"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में AI Anywhere for ChatGPT एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        💬 AI Anywhere is handy helper for ChatGPT (created by OpenAI).

⭐ Main features:
  - customizable context menu options - Summarize / Explain / Translate {selected text}
  - click toolbar icon for instant access
  - click toolbar icon on Google to re-search with ChatGPT
  - press arrow Up / Down inside ChatGPT to access previous queries

❤ Support independent developer and official friend of Addons!
Juraj Mäsiar - https://Blog.Mozilla.org/Addons/2020/06/15/Friend-Of-Add-ons-Juraj-Masiar/

☕ I'm addon developer since 2016. My goal is to build powerful extensions for your web-browser to make you more productive.
If you think I'm doing a good job, please donate :)
- Ko-Fi.com: https://ko-fi.com/fastaddons
- PayPal.Me: https://paypal.me/fastaddons/
- Patreon.com: https://www.patreon.com/fastaddons

💥 Your donation is my only income!
Thank you for supporting my work!

🔒 Privacy Policy:
https://github.com/fastaddons/AI-Anywhere/blob/master/PRIVACY_POLICY.md                    

एक्सटेंशन की मूल जानकारी

नाम AI Anywhere for ChatGPT AI Anywhere for ChatGPT
ID ampobpdnahgplhoheemmgigbomagobbk
आधिकारिक URL https://chromewebstore.google.com/detail/ai-anywhere-for-chatgpt/ampobpdnahgplhoheemmgigbomagobbk
विवरण ChatGPT enhancer - adds context menu, keyboard shortcuts, history and more!
फ़ाइल का आकार 1.84 MB
स्थापना संख्या 923
वर्तमान संस्करण 2.6
अंतिम अपडेट 2023-11-03
प्रकाशन तिथि 2023-01-11
रेटिंग 4.86/5 कुल 7 रेटिंग्स
डेवलपर https://fastaddons.com
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://fastaddons.com/#ai_anywhere
सहायता पृष्ठ URL https://github.com/fastaddons/AI-Anywhere/issues
गोपनीयता नीति पृष्ठ URL https://github.com/fastaddons/privacy_policy
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "version": "2.6",
    "author": "Juraj M\u00e4siar",
    "default_locale": "en",
    "name": "__MSG_app_name__",
    "description": "__MSG_app_desc__",
    "icons": {
        "48": "48.png",
        "128": "128.png"
    },
    "background": {
        "service_worker": "background.loader.js"
    },
    "action": {
        "default_icon": {
            "128": "128.png"
        },
        "default_popup": "popup\/popup.html"
    },
    "options_ui": {
        "page": "editor\/editor.html",
        "open_in_tab": true
    },
    "commands": {
        "open_ai": {
            "suggested_key": {
                "default": "Alt+I"
            },
            "description": "Open modal window."
        }
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.openai.com\/*"
            ],
            "all_frames": true,
            "run_at": "document_end",
            "js": [
                "browser-polyfill.min.js",
                "content_scripts\/ai.cs.js"
            ]
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "editor\/editor.css",
                "editor\/editor.html",
                "editor\/editor.js",
                "utils\/svg\/resize-corner.svg"
            ],
            "matches": [
                ""
            ],
            "use_dynamic_url": true
        }
    ],
    "permissions": [
        "contextMenus",
        "storage",
        "activeTab",
        "webRequest",
        "declarativeNetRequestWithHostAccess"
    ],
    "host_permissions": [
        "*:\/\/*.openai.com\/*"
    ],
    "incognito": "split"
}