StackOverflow Answer

Quick answers of StackOverflow topics on Google

什麼是StackOverflow Answer?

StackOverflow Answer是由Ronanren開發的Chrome擴展程式,該擴展的主要功能是“Quick answers of StackOverflow topics on Google”。

擴展截圖

screenshot
screenshot
screenshot
screenshot

下載StackOverflow Answer擴展crx文件

下載StackOverflow Answer擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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
官方網址 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"
    }
}