Stylized Scrollbar
Stylize your scroll bar from a handful of presets
O que é Stylized Scrollbar?
Stylized Scrollbar é uma extensão do Chrome desenvolvida por Andrew Li, e sua principal característica é "Stylize your scroll bar from a handful of presets".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Stylized Scrollbar
Baixe arquivos de extensão Stylized Scrollbar 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
An extension that customizes your scroll bar to either a black or white one. Works on all websites and can be changed on the fly into black or white. Check out the style of the scroll bar above
Informações Básicas da Extensão
Nome | Stylized Scrollbar |
ID | igpchmaapelclmhofnheepclmfniobnc |
URL Oficial | https://chromewebstore.google.com/detail/stylized-scrollbar/igpchmaapelclmhofnheepclmfniobnc |
Descrição | Stylize your scroll bar from a handful of presets |
Tamanho do Arquivo | 449 KB |
Contagem de Instalações | 57 |
Versão Atual | 0.1.0 |
Última Atualização | 2021-01-23 |
Data de Publicação | 2021-01-22 |
Desenvolvedor | Andrew Li |
[email protected] | |
Tipo de Pagamento | free |
Site da Extensão | https://github.com/Zeyu-Li/scroll_with_style |
URL da Página de Ajuda | https://github.com/Zeyu-Li/scroll_with_style/discussions/categories/bugs |
Idiomas Suportados | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Stylized Scrollbar", "author": "Andrew Li", "version": "0.1.0", "manifest_version": 2, "description": "Stylize your scroll bar from a handful of presets", "permissions": [ "storage" ], "icons": { "128": "images\/icon_128.png" }, "browser_action": { "default_icon": "images\/icon.png", "default_popup": "popup.html", "default_title": "Custom Scrollbar" }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "js\/content.js" ] } ], "options_page": "popup.html" } |