Someity

Making the Web Accessible for All

Someityとは何ですか?

SomeityはI4Allによって開発されたChromeの拡張機能で、その主な機能は「Making the Web Accessible for All」です。

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

screenshot
screenshot
screenshot
screenshot
screenshot

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

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

拡張機能の使用方法

                        More than 70% websites on the Internet have been classified as in-accessible. This is inimical to people with disabilities and restricts involving them within the Internet Community. We were determined to change this. We built Someity to serve as an all-in-one accessibility and productivity tool without having the website makers change a single line of source code.

We want our users with varied abilities to feel empowered and confident on the Internet just like their more fortunate peers. We want them to feel brave and fearless - just like Someity.

Features:

• Someity Actions
• Color Blind Aid
• Font Type
• Focus Mode
• Text-to-speech
• Text Zoomer
• Font Color
• Magnifier
• Cursor Customizer
• Screen Capture
• Print Page

Introducing Someity Actions

With Someity Actions you can have Someity:
• Open any website on the Internet by just naming it.
• Google anything for you.
• Play a song on YouTube.
• Translate from any language to English.
• Google Map directions from any location to any other location in the world just by naming the two cities.

Website
https://someity.tech

Support
Features, bugs and improvements welcome over here:
https://github.com/RonLek/Someity/issues                    

拡張機能の基本情報

名前 Someity Someity
ID jifjdmnjnmpbclnpjlmebkclilekkdho
公式URL https://chromewebstore.google.com/detail/someity/jifjdmnjnmpbclnpjlmebkclilekkdho
説明 Making the Web Accessible for All
ファイルサイズ 1.2 MB
インストール数 101
現在のバージョン 1.4.0
最終更新日 2024-02-05
公開日 2021-05-11
評価 3.67/5 合計 3 レビュー
開発者 I4All
Eメール [email protected]
支払い方法 free
拡張機能のウェブサイト https://someity.tech
ヘルプページのURL https://github.com/RonLek/Someity/issues
対応言語 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Someity",
    "description": "Making the Web Accessible for All",
    "version": "1.4.0",
    "manifest_version": 3,
    "background": {
        "service_worker": "background.js"
    },
    "author": "Rohan Lekhwani and Aaditya Joshi",
    "homepage_url": "https:\/\/someity.tech",
    "short_name": "Someity",
    "permissions": [
        "activeTab",
        "storage",
        "contextMenus"
    ],
    "action": {
        "default_popup": "popup.html",
        "default_icon": "icon.png"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "css": [
                "contentCss.css"
            ],
            "js": [
                "jquery-3.1.0.min.js",
                "jquery.lettering-0.6.1.min.js",
                "contentScript.js"
            ]
        }
    ],
    "options_page": "options.html",
    "icons": {
        "16": "icon.png",
        "32": "icon.png",
        "48": "icon.png",
        "128": "icon.png"
    },
    "web_accessible_resources": [
        {
            "resources": [
                "scripts\/css\/fonts\/Sign-Language.ttf",
                "scripts\/css\/*",
                "scripts\/*",
                "images\/*"
            ],
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*",
                "file:\/\/*\/*"
            ]
        }
    ],
    "commands": {
        "toggle-image-veil": {
            "suggested_key": {
                "default": "Alt+V",
                "windows": "Alt+V",
                "mac": "Alt+V",
                "chromeos": "Alt+V",
                "linux": "Alt+V"
            },
            "description": "Toggle Image Veil"
        },
        "toggle-highlight-words": {
            "suggested_key": {
                "default": "Alt+Shift+H",
                "windows": "Alt+Shift+H",
                "mac": "Alt+Shift+H",
                "chromeos": "Alt+Shift+H",
                "linux": "Alt+Shift+H"
            },
            "description": "Toggle Highlight Words"
        },
        "toggle-magnifier": {
            "suggested_key": {
                "default": "Alt+Shift+M",
                "windows": "Alt+Shift+M",
                "mac": "Alt+Shift+M",
                "chromeos": "Alt+Shift+M",
                "linux": "Alt+Shift+M"
            },
            "description": "Toggle Magnifier"
        },
        "toggle-emphasize-links": {
            "suggested_key": {
                "default": "Alt+Shift+E",
                "windows": "Alt+Shift+E",
                "mac": "Alt+Shift+E",
                "chromeos": "Alt+Shift+E",
                "linux": "Alt+Shift+E"
            },
            "description": "Toggle Emphasize Links"
        }
    }
}