Tenses
Tenses is an extension that provides verb tenses while browsing the web.
Что такое Tenses?
Tenses - это расширение Chrome, разработанное extensions.thundersoft, и его основная функция - "Tenses is an extension that provides verb tenses while browsing the web.".
Снимки экрана расширения
Скачать файл CRX расширения Tenses
Скачайте файлы расширений Tenses в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
Tenses is an extension that provides verb tenses while browsing the web. Is recommended to install Google Translate extension to have a better translation experience. All donations are welcome and appreciated. https://paypal.me/eddortega1?country.x=MX&locale.x=es_XC Основная информация о расширении
| Название | |
| ID | fgfpflagdmokamgiihgkapfeagfcoobi |
| Официальный URL | https://chromewebstore.google.com/detail/tenses/fgfpflagdmokamgiihgkapfeagfcoobi |
| Описание | Tenses is an extension that provides verb tenses while browsing the web. |
| Размер файла | 163 KB |
| Количество установок | 62 |
| Текущая Версия | 0.0.2 |
| Последнее Обновление | 2023-03-04 |
| Дата публикации | 2022-08-08 |
| Рейтинг | 5.00/5 Всего 1 оценок |
| Разработчик | extensions.thundersoft |
| Электронная почта | [email protected] |
| Тип оплаты | free |
| Поддерживаемые языки | en-US |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Tenses",
"description": "Tenses is an extension that provides verb tenses while browsing the web.",
"version": "0.0.2",
"version_name": "0.0.2",
"manifest_version": 3,
"background": {
"service_worker": "js\/background.js"
},
"action": {
"default_popup": "popup.html",
"default_icon": {
"16": "\/images\/icon16.png",
"32": "\/images\/icon32.png",
"128": "\/images\/icon128.png"
}
},
"icons": {
"16": "\/images\/icon16.png",
"32": "\/images\/icon32.png",
"128": "\/images\/icon128.png"
},
"content_scripts": [
{
"matches": [
"*:\/\/*\/*"
],
"run_at": "document_end",
"css": [
"css\/tenses.css"
],
"js": [
"js\/content.js",
"js\/global.js"
]
}
],
"web_accessible_resources": [
{
"resources": [
"images\/*.png"
],
"matches": [
"*:\/\/*\/*"
]
}
]
} | |