Element Text Selector

Highlights text based on elements.

Cos'è Element Text Selector?

Element Text Selector è un'estensione di Chrome sviluppata da HobbyDev, e la sua funzione principale è "Highlights text based on elements.".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Element Text Selector

Scarica i file di estensione Element Text Selector in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome Element Text Selector Element Text Selector
ID ajjdehfgjbdjiinaipdglfppekcnigjd
URL Ufficiale https://chromewebstore.google.com/detail/element-text-selector/ajjdehfgjbdjiinaipdglfppekcnigjd
Descrizione Highlights text based on elements.
Dimensione del File 16.19 KB
Conteggio Installazioni 1,449
Versione Corrente 1.0
Ultimo Aggiornamento 2018-05-27
Data di Pubblicazione 2018-05-27
Valutazione 4.00/5 Totale 4 Valutazioni
Sviluppatore HobbyDev
Tipo di Pagamento free
Lingue Supportate 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"
    }
}