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文件

下载StackOverflow Tweaks Tool扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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"
}