ExplainDev: Explains code on your browser

The programmer's assistant of the future

ExplainDev: Explains code on your browser क्या है?

ExplainDev: Explains code on your browser https://explain.dev द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "The programmer's assistant of the future"।

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

screenshot
screenshot
screenshot
screenshot
screenshot

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

crx प्रारूप में ExplainDev: Explains code on your browser एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

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

                        Meet the AI powered browser extension that explains code and answers your questions using plain language.

When you install ExplainDev, you’re getting an always available expert that can answer questions on the code you’re reading without you phoning a friend or even opening a new tab.

Make sense of code written by others in GitHub, Stack Overflow answers, snippets and regular expressions in documentation, config files and examples in learning sites.

To use ExplainDev:
1. Install ExplainDev browser extension
2. Create an account (default: free)
3. Browse as normal; but when you see code on a website, use the explain button to get explanations and ask questions.

Developers and folks working with code need more support than ever with the demand for their technical expertise outrunning supply and 20% of developer time spent trying to understand others' code.                    

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

नाम ExplainDev: Explains code on your browser ExplainDev: Explains code on your browser
ID ckddclbnijomilkjgjlapfhfcgnkcgki
आधिकारिक URL https://chromewebstore.google.com/detail/explaindev-explains-code/ckddclbnijomilkjgjlapfhfcgnkcgki
विवरण The programmer's assistant of the future
फ़ाइल का आकार 483 KB
स्थापना संख्या 4,023
वर्तमान संस्करण 1.8.5
अंतिम अपडेट 2023-03-08
प्रकाशन तिथि 2022-01-15
रेटिंग 4.87/5 कुल 31 रेटिंग्स
डेवलपर https://explain.dev
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://explain.dev/
सहायता पृष्ठ URL https://explain.dev/support
गोपनीयता नीति पृष्ठ URL https://explain.dev/privacy
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "ExplainDev: Explains code on your browser",
    "version": "1.8.5",
    "icons": {
        "16": "assets\/icons\/icon-16.png",
        "32": "assets\/icons\/icon-32.png",
        "48": "assets\/icons\/icon-48.png",
        "128": "assets\/icons\/icon-128.png"
    },
    "description": "The programmer's assistant of the future",
    "homepage_url": "https:\/\/explain.dev\/",
    "short_name": "Sample Name",
    "permissions": [
        "storage",
        "contextMenus",
        "https:\/\/api.explain.dev\/*"
    ],
    "content_security_policy": "script-src 'self'; object-src 'self'",
    "author": "Kmdr LLC",
    "minimum_chrome_version": "49",
    "browser_action": {
        "default_popup": "popup.html",
        "default_icon": {
            "16": "assets\/icons\/icon-16.png",
            "32": "assets\/icons\/icon-32.png",
            "48": "assets\/icons\/icon-48.png",
            "128": "assets\/icons\/icon-128.png"
        },
        "default_title": "ExplainDev explains the code in your browser",
        "chrome_style": false
    },
    "options_page": "options.html",
    "options_ui": {
        "page": "options.html",
        "open_in_tab": true,
        "chrome_style": false
    },
    "background": {
        "scripts": [
            "js\/background.bundle.js"
        ],
        "persistent": true
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*\/*"
            ],
            "js": [
                "js\/contentScript.bundle.js"
            ],
            "run_at": "document_end",
            "css": [
                "assets\/css\/tooltip.css"
            ]
        }
    ],
    "web_accessible_resources": [
        "assets\/images\/*",
        "assets\/css\/*",
        "options.html",
        "login.html",
        "assets\/icons\/*"
    ]
}