Ability

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

Abilityคืออะไร?

Ability เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Barani และคุณลักษณะหลักของมันคือ "Ability is a browser extension that helps people with varying degrees of ability have more control over their browsing experience."

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Ability

ดาวน์โหลดไฟล์ส่วนขยาย 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
อีเมล [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": [
                ""
            ]
        }
    ]
}