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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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"
    }
}