Element Text Selector
Highlights text based on elements.
Co to jest Element Text Selector?
Element Text Selector to rozszerzenie Chrome opracowane przez HobbyDev, a jego główną funkcją jest „Highlights text based on elements.”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Element Text Selector
Pobierz pliki rozszerzeń Element Text Selector w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
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. Podstawowe informacje o rozszerzeniu
| Nazwa | |
| ID | ajjdehfgjbdjiinaipdglfppekcnigjd |
| Oficjalny URL | https://chromewebstore.google.com/detail/element-text-selector/ajjdehfgjbdjiinaipdglfppekcnigjd |
| Opis | Highlights text based on elements. |
| Rozmiar pliku | 16.19 KB |
| Liczba instalacji | 1,449 |
| Aktualna Wersja | 1.0 |
| Ostatnia Aktualizacja | 2018-05-27 |
| Data Publikacji | 2018-05-27 |
| Ocena | 4.00/5 Łącznie 4 Oceny |
| Deweloper | HobbyDev |
| Typ Płatności | free |
| Obsługiwane Języki | 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"
}
} | |