StackOverflow Answer

Quick answers of StackOverflow topics on Google

StackOverflow Answer क्या है?

StackOverflow Answer Ronanren द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Quick answers of StackOverflow topics on Google"।

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

screenshot
screenshot
screenshot
screenshot

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

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

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

                        Chrome Extension to quickly get StackOverflow answers from a google search

Features
🌎 Get answer on every StackOverflow instantly
⌛ Fast extension to display the data
🔘 Button on each StackOverflow topic to display the answer
🌓 Switch to dark and light theme
🔑 Put your StackApps api key (no required)

Usage
In the options (right click on the extension icon and options), you can change the theme and put your StackApps api key to have 10000 requests instead of 300 without key.
To get an api key, you need to create an application on Stackapps.com

You want to add new features to Stackoverflow Answer? Don't hesitate to check out the code on GitHub! 👉 https://github.com/ronanren/StackOverflowAnswer

for Privacy policy 👉 https://github.com/ronanren/StackOverflowAnswer/blob/main/privacy                    

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

नाम StackOverflow Answer StackOverflow Answer
ID bmlkdgmiaemiaopodggkhfblhmefimoi
आधिकारिक URL https://chromewebstore.google.com/detail/stackoverflow-answer/bmlkdgmiaemiaopodggkhfblhmefimoi
विवरण Quick answers of StackOverflow topics on Google
फ़ाइल का आकार 2.08 MB
स्थापना संख्या 86
वर्तमान संस्करण 1.1
अंतिम अपडेट 2022-12-21
प्रकाशन तिथि 2021-03-30
रेटिंग 5.00/5 कुल 2 रेटिंग्स
डेवलपर Ronanren
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://github.com/ronanren/StackOverflowAnswer
गोपनीयता नीति पृष्ठ URL https://github.com/ronanren/StackOverflowAnswer/blob/main/privacy
समर्थित भाषाएँ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "StackOverflow Answer",
    "description": "Quick answers of StackOverflow topics on Google",
    "version": "1.1",
    "manifest_version": 3,
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "include_globs": [
                "http:\/\/www.google.*\/*",
                "https:\/\/www.google.*\/*"
            ],
            "js": [
                "js\/jquery-3.6.0.min.js",
                "js\/run_prettify.js",
                "content.js"
            ],
            "css": [
                "css\/style.css"
            ]
        }
    ],
    "permissions": [
        "storage"
    ],
    "options_ui": {
        "page": "options\/options.html",
        "open_in_tab": false
    },
    "icons": {
        "16": "images\/logo16.png",
        "48": "images\/logo48.png",
        "128": "images\/logo128.png"
    }
}