Element Text Selector
Highlights text based on elements.
Was ist Element Text Selector?
Element Text Selector ist eine Chrome-Erweiterung, die von HobbyDev entwickelt wurde, und ihr Hauptmerkmal ist "Highlights text based on elements.".
Erweiterungsscreenshots
Element Text Selector-Erweiterungs-CRX-Datei herunterladen
Laden Sie Element Text Selector-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
                        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.                     Grundlegende Informationen zur Erweiterung
| Name |   |  
| ID | ajjdehfgjbdjiinaipdglfppekcnigjd | 
| Offizielle URL | https://chromewebstore.google.com/detail/element-text-selector/ajjdehfgjbdjiinaipdglfppekcnigjd | 
| Beschreibung | Highlights text based on elements. | 
| Dateigröße | 16.19 KB | 
| Installationsanzahl | 1,449 | 
| Aktuelle Version | 1.0 | 
| Letztes Update | 2018-05-27 | 
| Veröffentlichungsdatum | 2018-05-27 | 
| Bewertung | 4.00/5 Insgesamt 4 Bewertungen | 
| Entwickler | HobbyDev | 
| Zahlungsart | free | 
| Unterstützte Sprachen | 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"
    }
}  |  |