StackOverflow Tweaks Tool

A tool to tweak the StackOverflow UI and boost your productivity.

StackOverflow Tweaks Tool란 무엇입니까?

StackOverflow Tweaks Tool은(는) Riccardo Fasan에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "A tool to tweak the StackOverflow UI and boost your productivity."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot

StackOverflow Tweaks Tool 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        StackOverflow Tweaks Tool is an extension made for developers. The extension provides a small control panel where you can customize the UI of the StackOverflow question pages.

You can:

1) Hide the side bars of the question pages.
2) Highlight the correct anwser.
3) Add a button to scroll to the correct answer.
4) Copy the code inside any answer with a button.
5) Copy the link of any answer with a button.                    

확장 프로그램 기본 정보

이름 StackOverflow Tweaks Tool StackOverflow Tweaks Tool
ID dfignoicphdepgloiodeaiokaepjbnan
공식 URL https://chromewebstore.google.com/detail/stackoverflow-tweaks-tool/dfignoicphdepgloiodeaiokaepjbnan
설명 A tool to tweak the StackOverflow UI and boost your productivity.
파일 크기 47.53 KB
설치 횟수 63
현재 버전 1.5.8
최근 업데이트 2023-12-12
출시 날짜 2022-02-18
평점 5.00/5 총 2 개의 평점
개발자 Riccardo Fasan
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/riccardoFasan/stack-overflow-tweaks-tool
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "StackOverflow Tweaks Tool",
    "description": "A tool to tweak the StackOverflow UI and boost your productivity.",
    "icons": {
        "16": "icons\/StackOverlowTweaksTool_16x16.png",
        "48": "icons\/StackOverlowTweaksTool_48x48.png",
        "128": "icons\/StackOverlowTweaksTool_128x128.png"
    },
    "permissions": [
        "storage"
    ],
    "background": {
        "service_worker": "js\/background.js"
    },
    "action": {
        "default_title": "StackOverflow Tweaks Tool",
        "default_popup": "popup.html"
    },
    "web_accessible_resources": [
        {
            "resources": [
                "icons\/stackOverflowBulb.svg",
                "icons\/copy.svg"
            ],
            "matches": [
                "*:\/\/stackoverflow.com\/*"
            ]
        }
    ],
    "content_scripts": [
        {
            "js": [
                "js\/content-scripts\/dom.js",
                "js\/content-scripts\/features\/feature.js",
                "js\/content-scripts\/features\/anchor.js",
                "js\/content-scripts\/features\/highlight-answer.js",
                "js\/content-scripts\/features\/jump-to-the-answer.js",
                "js\/content-scripts\/features\/jump-to-the-most-voted.js",
                "js\/content-scripts\/features\/get-answer-link.js",
                "js\/content-scripts\/features\/copy-code.js",
                "js\/content-scripts\/features\/toggle-navs.js",
                "js\/content-scripts\/init.js"
            ],
            "css": [
                "css\/style.css"
            ],
            "matches": [
                "*:\/\/stackoverflow.com\/questions\/*\/*",
                "*:\/\/*.stackoverflow.com\/questions\/*\/*"
            ]
        }
    ],
    "version": "1.5.8"
}