Ability

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

Ability क्या है?

Ability Barani द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Ability is a browser extension that helps people with varying degrees of ability have more control over their browsing experience."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Ability एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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": [
                ""
            ]
        }
    ]
}