Ability

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

Ability là gì?

Ability là một tiện ích mở rộng Chrome được phát triển bởi Barani, và tính năng chính của nó là "Ability is a browser extension that helps people with varying degrees of ability have more control over their browsing experience.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Ability

Tải xuống các tệp mở rộng Ability dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Ability Ability
ID gldepcmoodehphjbjhcmafjkmemajgpo
URL Chính Thức https://chromewebstore.google.com/detail/ability/gldepcmoodehphjbjhcmafjkmemajgpo
Mô tả Ability is a browser extension that helps people with varying degrees of ability have more control over their browsing experience.
Kích Thước Tệp 1.45 MB
Số Lần Cài Đặt 51
Phiên Bản Hiện Tại 1.1
Cập Nhật Lần Cuối 2023-11-24
Ngày Phát Hành 2023-11-14
Nhà Phát Triển Barani
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/TBosak/ability
URL Trang Trợ Giúp https://chat.openai.com/g/g-jr8jtrs9O-ability
Ngôn Ngữ Được Hỗ Trợ 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": [
                ""
            ]
        }
    ]
}