Ability

Ability is a browser extension that helps people with varying degrees of ability have more control over their browsing experience.

O que é Ability?

Ability é uma extensão do Chrome desenvolvida por Barani, e sua principal característica é "Ability is a browser extension that helps people with varying degrees of ability have more control over their browsing experience.".

Capturas de Tela da Extensão

screenshot
screenshot

Baixar o arquivo CRX da Extensão Ability

Baixe arquivos de extensão Ability 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

                        This extension is a comprehensive collection of assistive tools for individuals with various levels of ability or challenges. It is designed to empower the user to access the web in a more personally tailored way. It provides a range of features including text-to-speech, speech-to-text, image hiding, high contrast mode, image magnification, text input autocomplete, dyslexia-friendly font injection, etc. This collection of tools was designed keeping in mind individuals with sensory sensitivities, dyslexia, epilepsy, visual & mobility impairments, and intellectual disabilities. The features will continue to grow as more needs are discovered. See the list of upcoming features in the readme for a look at what's coming down the pipeline.                    

Informações Básicas da Extensão

Nome Ability Ability
ID gldepcmoodehphjbjhcmafjkmemajgpo
URL Oficial https://chromewebstore.google.com/detail/ability/gldepcmoodehphjbjhcmafjkmemajgpo
Descrição Ability is a browser extension that helps people with varying degrees of ability have more control over their browsing experience.
Tamanho do Arquivo 1.45 MB
Contagem de Instalações 51
Versão Atual 1.1
Última Atualização 2023-11-24
Data de Publicação 2023-11-14
Desenvolvedor Barani
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://github.com/TBosak/ability
URL da Página de Ajuda https://chat.openai.com/g/g-jr8jtrs9O-ability
Idiomas Suportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Ability",
    "description": "Ability is a browser extension that helps people with varying degrees of ability have more control over their browsing experience.",
    "version": "1.1",
    "permissions": [
        "contextMenus",
        "tts",
        "storage",
        "scripting",
        "activeTab"
    ],
    "action": {
        "default_icon": {
            "16": "assets\/16.png",
            "32": "assets\/32.png",
            "128": "assets\/128.png"
        },
        "default_popup": "pop-up.html"
    },
    "icons": {
        "16": "assets\/16.png",
        "32": "assets\/32.png",
        "128": "assets\/128.png"
    },
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "host_permissions": [
        ""
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "assets\/OpenDyslexic.otf",
                "assets\/cursor.png",
                "assets\/words.json"
            ],
            "matches": [
                ""
            ]
        }
    ]
}