Ability

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

Abilityとは何ですか?

AbilityはBaraniによって開発されたChromeの拡張機能で、その主な機能は「Ability is a browser extension that helps people with varying degrees of ability have more control over their browsing experience.」です。

拡張機能のスクリーンショット

screenshot
screenshot

Ability拡張機能のCRXファイルをダウンロード

Ability拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        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.                    

拡張機能の基本情報

名前 Ability Ability
ID gldepcmoodehphjbjhcmafjkmemajgpo
公式URL https://chromewebstore.google.com/detail/ability/gldepcmoodehphjbjhcmafjkmemajgpo
説明 Ability is a browser extension that helps people with varying degrees of ability have more control over their browsing experience.
ファイルサイズ 1.45 MB
インストール数 51
現在のバージョン 1.1
最終更新日 2023-11-24
公開日 2023-11-14
開発者 Barani
Eメール [email protected]
支払い方法 free
拡張機能のウェブサイト https://github.com/TBosak/ability
ヘルプページのURL https://chat.openai.com/g/g-jr8jtrs9O-ability
対応言語 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": [
                ""
            ]
        }
    ]
}