Element Text Selector

Highlights text based on elements.

What is Element Text Selector?

Element Text Selector is a Chrome extension developed by HobbyDev, and its main feature is "Highlights text based on elements.".

Extension Screenshots

screenshot

Download Element Text Selector Extension CRX File

Download Element Text Selector extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        This extension highlights text based on elements. Useful for text-to-speech and other applications.

Click or select a place to start and activate it through the toolbar icon, right-click menu, or with Ctrl+Shift+A. Activate it multiple times to step through parent elements.                    

Extension Basic Information

Name Element Text Selector Element Text Selector
ID ajjdehfgjbdjiinaipdglfppekcnigjd
Official URL https://chromewebstore.google.com/detail/element-text-selector/ajjdehfgjbdjiinaipdglfppekcnigjd
Description Highlights text based on elements.
File Size 16.19 KB
Installation Count 1,449
Current Version 1.0
Last Updated 2018-05-27
Publish Date 2018-05-27
Rating 4.00/5 Total 4 Ratings
Developer HobbyDev
Payment Type free
Supported Languages en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Element Text Selector",
    "version": "1.0",
    "description": "Highlights text based on elements.",
    "permissions": [
        "contextMenus",
        "activeTab"
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "browser_action": {
        "default_icon": "16.png"
    },
    "commands": {
        "usedHotkey": {
            "suggested_key": {
                "default": "Ctrl+Shift+A",
                "windows": "Ctrl+Shift+A",
                "mac": "Command+Shift+A"
            },
            "description": "Highlights text"
        }
    },
    "manifest_version": 2,
    "icons": {
        "16": "16.png",
        "48": "48.png",
        "128": "128.png"
    }
}