Atlassian Helper

Some handy helpers for Atlassian products

Co to jest Atlassian Helper?

Atlassian Helper to rozszerzenie Chrome opracowane przez Viljami Vastamäki, a jego główną funkcją jest „Some handy helpers for Atlassian products”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Atlassian Helper

Pobierz pliki rozszerzeń Atlassian Helper 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

                        Generates a button that allows users to expand all expandable boxes at once on the Confluence page.

Alternatively, you can press Ctrl + E                    

Podstawowe informacje o rozszerzeniu

Nazwa Atlassian Helper Atlassian Helper
ID bpjfgniflcdjodppkodbcmdleafknoed
Oficjalny URL https://chromewebstore.google.com/detail/atlassian-helper/bpjfgniflcdjodppkodbcmdleafknoed
Opis Some handy helpers for Atlassian products
Rozmiar pliku 4.21 KB
Liczba instalacji 162
Aktualna Wersja 1.2
Ostatnia Aktualizacja 2022-11-30
Data Publikacji 2020-10-05
Ocena 4.00/5 Łącznie 2 Oceny
Deweloper Viljami Vastamäki
E-mail [email protected]
Typ Płatności free
Obsługiwane Języki 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"
        }
    ]
}