StackOverflow Tweaks Tool
A tool to tweak the StackOverflow UI and boost your productivity.
Was ist StackOverflow Tweaks Tool?
StackOverflow Tweaks Tool ist eine Chrome-Erweiterung, die von Riccardo Fasan entwickelt wurde, und ihr Hauptmerkmal ist "A tool to tweak the StackOverflow UI and boost your productivity.".
Erweiterungsscreenshots
StackOverflow Tweaks Tool-Erweiterungs-CRX-Datei herunterladen
Laden Sie StackOverflow Tweaks Tool-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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. Grundlegende Informationen zur Erweiterung
| Name | |
| ID | dfignoicphdepgloiodeaiokaepjbnan |
| Offizielle URL | https://chromewebstore.google.com/detail/stackoverflow-tweaks-tool/dfignoicphdepgloiodeaiokaepjbnan |
| Beschreibung | A tool to tweak the StackOverflow UI and boost your productivity. |
| Dateigröße | 47.53 KB |
| Installationsanzahl | 63 |
| Aktuelle Version | 1.5.8 |
| Letztes Update | 2023-12-12 |
| Veröffentlichungsdatum | 2022-02-18 |
| Bewertung | 5.00/5 Insgesamt 2 Bewertungen |
| Entwickler | Riccardo Fasan |
| [email protected] | |
| Zahlungsart | free |
| Erweiterungswebsite | https://github.com/riccardoFasan/stack-overflow-tweaks-tool |
| Unterstützte Sprachen | 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"
} | |