StackOverflow Answer

Quick answers of StackOverflow topics on Google

Qu'est-ce que StackOverflow Answer ?

StackOverflow Answer est une extension Chrome développée par Ronanren, et sa fonction principale est "Quick answers of StackOverflow topics on Google".

Captures d'Écran de l'Extension

screenshot
screenshot
screenshot
screenshot

Télécharger le fichier CRX de l'extension StackOverflow Answer

Téléchargez les fichiers d'extension StackOverflow Answer au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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                    

Informations de Base sur l'Extension

Nom StackOverflow Answer StackOverflow Answer
ID bmlkdgmiaemiaopodggkhfblhmefimoi
URL Officiel https://chromewebstore.google.com/detail/stackoverflow-answer/bmlkdgmiaemiaopodggkhfblhmefimoi
Description Quick answers of StackOverflow topics on Google
Taille du Fichier 2.08 MB
Nombre d'Installations 86
Version Actuelle 1.1
Dernière Mise à Jour 2022-12-21
Date de Publication 2021-03-30
Évaluation 5.00/5 Total 2 Évaluations
Développeur Ronanren
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://github.com/ronanren/StackOverflowAnswer
URL de la Page de Politique de Confidentialité https://github.com/ronanren/StackOverflowAnswer/blob/main/privacy
Langues Prises en Charge 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"
    }
}