Custom Scrollbars
Improve accessibility by using custom width and styles for scrollbars. Useful for increasing the size of tiny scrollbars on Mac
O que é Custom Scrollbars?
Custom Scrollbars é uma extensão do Chrome desenvolvida por BlackSandSolutions, e sua principal característica é "Improve accessibility by using custom width and styles for scrollbars. Useful for increasing the size of tiny scrollbars on Mac".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Custom Scrollbars
Baixe arquivos de extensão Custom Scrollbars 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
Customise the width and appearance of the scrollbars for most websites. A long term Windows user I recently started using a Mac and found the teeny tiny scrollbars a nuisance to use. This extension allows you to make them wider so they are easier to click. You can also change the colours should you wish. You can set a global default style for all website and also provide custom styles for individual sites.
Informações Básicas da Extensão
Nome | Custom Scrollbars |
ID | kbjbpcegpnjlinplpkkffdiebdddkpdo |
URL Oficial | https://chromewebstore.google.com/detail/custom-scrollbars/kbjbpcegpnjlinplpkkffdiebdddkpdo |
Descrição | Improve accessibility by using custom width and styles for scrollbars. Useful for increasing the size of tiny scrollbars on Mac |
Tamanho do Arquivo | 282 KB |
Contagem de Instalações | 49 |
Versão Atual | 0.0.0.3 |
Última Atualização | 2021-04-26 |
Data de Publicação | 2021-04-26 |
Classificação | 4.00/5 Total de 2 Avaliações |
Desenvolvedor | BlackSandSolutions |
[email protected] | |
Tipo de Pagamento | free |
Idiomas Suportados | en-GB |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Custom Scrollbars", "description": "Improve accessibility by using custom width and styles for scrollbars. Useful for increasing the size of tiny scrollbars on Mac", "version": "0.0.0.3", "icons": { "16": "icon-16x16.png", "48": "icon-48x48.png", "128": "icon-128x128.png" }, "background": { "persistent": false, "scripts": [ "background.js" ] }, "browser_action": { "default_icon": { "32": "icon-32x32.png" }, "default_popup": "index.html", "default_title": "Open Popup" }, "commands": { "_execute_browser_action": { "suggested_key": { "default": "Ctrl+Shift+O", "mac": "MacCtrl+Shift+O" }, "description": "Toggle Popup" } }, "permissions": [ "tabs", "storage", "*:\/\/*\/*" ], "content_scripts": [ { "matches": [ "*:\/\/*\/*" ], "js": [ "content.js" ] } ] } |