Atlassian Helper
Some handy helpers for Atlassian products
Что такое Atlassian Helper?
Atlassian Helper - это расширение Chrome, разработанное Viljami Vastamäki, и его основная функция - "Some handy helpers for Atlassian products".
Снимки экрана расширения
Скачать файл CRX расширения Atlassian Helper
Скачайте файлы расширений Atlassian Helper в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
Generates a button that allows users to expand all expandable boxes at once on the Confluence page.
Alternatively, you can press Ctrl + E Основная информация о расширении
| Название | |
| ID | bpjfgniflcdjodppkodbcmdleafknoed |
| Официальный URL | https://chromewebstore.google.com/detail/atlassian-helper/bpjfgniflcdjodppkodbcmdleafknoed |
| Описание | Some handy helpers for Atlassian products |
| Размер файла | 4.21 KB |
| Количество установок | 162 |
| Текущая Версия | 1.2 |
| Последнее Обновление | 2022-11-30 |
| Дата публикации | 2020-10-05 |
| Рейтинг | 4.00/5 Всего 2 оценок |
| Разработчик | Viljami Vastamäki |
| Электронная почта | [email protected] |
| Тип оплаты | free |
| Поддерживаемые языки | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 3,
"name": "Atlassian Helper",
"version": "1.2",
"description": "Some handy helpers for Atlassian products",
"content_scripts": [
{
"matches": [
"*:\/\/*.atlassian.net\/*"
],
"js": [
"index.js"
],
"run_at": "document_end"
},
{
"matches": [
"*:\/\/*\/*"
],
"js": [
"index.js"
],
"run_at": "document_end"
}
]
} | |