Text-Spacing Editor
A tool for editing text spacing properties on web pages. WCAG conformance information included.
Что такое Text-Spacing Editor?
Text-Spacing Editor - это расширение Chrome, разработанное flora01hayes, и его основная функция - "A tool for editing text spacing properties on web pages. WCAG conformance information included.".
Снимки экрана расширения
Скачать файл CRX расширения Text-Spacing Editor
Скачайте файлы расширений Text-Spacing Editor в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
This extension allows you to set custom values for the following text spacing properties: Line height-letter spacing-word spacing- and paragraph spacing. Основная информация о расширении
| Название | |
| ID | hgiacbohdkgnobadgihbamoccokjpcca |
| Официальный URL | https://chromewebstore.google.com/detail/text-spacing-editor/hgiacbohdkgnobadgihbamoccokjpcca |
| Описание | A tool for editing text spacing properties on web pages. WCAG conformance information included. |
| Размер файла | 9.64 KB |
| Количество установок | 26 |
| Текущая Версия | 1.0.0 |
| Последнее Обновление | 2023-06-30 |
| Дата публикации | 2023-06-29 |
| Рейтинг | 5.00/5 Всего 2 оценок |
| Разработчик | flora01hayes |
| Электронная почта | [email protected] |
| Тип оплаты | free |
| URL страницы политики конфиденциальности | https://sites.google.com/view/extensions-privacy |
| Поддерживаемые языки | en-US |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Text-Spacing Editor",
"version": "1.0.0",
"description": "A tool for editing text spacing properties on web pages. WCAG conformance information included.",
"manifest_version": 3,
"permissions": [
"storage",
"activeTab",
"scripting"
],
"action": {
"default_popup": "index.html",
"default_title": "Text Spacing Editor"
},
"icons": {
"128": "icon.png"
},
"commands": {
"_execute_action": {
"suggested_key": "Ctrl+Shift+S",
"description": "Show or hide the extension window"
},
"toggle": {
"suggested_key": {
"windows": "Ctrl+Shift+X",
"mac": "Command+Shift+X",
"chromeos": "Ctrl+Shift+X",
"linux": "Ctrl+Shift+X"
},
"description": "Enable or disable text spacing properties."
}
},
"background": {
"service_worker": "background.js"
}
} | |