StackOverflow Tweaks Tool
A tool to tweak the StackOverflow UI and boost your productivity.
O que é StackOverflow Tweaks Tool?
StackOverflow Tweaks Tool é uma extensão do Chrome desenvolvida por Riccardo Fasan, e sua principal característica é "A tool to tweak the StackOverflow UI and boost your productivity.".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão StackOverflow Tweaks Tool
Baixe arquivos de extensão StackOverflow Tweaks Tool no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
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.
Informações Básicas da Extensão
Nome | StackOverflow Tweaks Tool |
ID | dfignoicphdepgloiodeaiokaepjbnan |
URL Oficial | https://chromewebstore.google.com/detail/stackoverflow-tweaks-tool/dfignoicphdepgloiodeaiokaepjbnan |
Descrição | A tool to tweak the StackOverflow UI and boost your productivity. |
Tamanho do Arquivo | 47.53 KB |
Contagem de Instalações | 63 |
Versão Atual | 1.5.8 |
Última Atualização | 2023-12-12 |
Data de Publicação | 2022-02-18 |
Classificação | 5.00/5 Total de 2 Avaliações |
Desenvolvedor | Riccardo Fasan |
[email protected] | |
Tipo de Pagamento | free |
Site da Extensão | https://github.com/riccardoFasan/stack-overflow-tweaks-tool |
Idiomas Suportados | 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" } |