Jumbleberry Steward

A Multi-Function Assistant

Co to jest Jumbleberry Steward?

Jumbleberry Steward to rozszerzenie Chrome opracowane przez Squaredance, a jego główną funkcją jest „A Multi-Function Assistant”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot

Pobierz plik CRX rozszerzenia Jumbleberry Steward

Pobierz pliki rozszerzeń Jumbleberry Steward 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

                        Effortlessly navigate Jumbleberry's internal systems with power-user functionality.

Steward provides a suite of enhancements, feature additions, or time saving shortcuts for platforms used by Jumbleberry's internal teams.

Additionally, it powers passwordless authentication to securely access sensitive CRM systems that do not allow multi-user authentication. Simply click on any one-click login icon to begin an authenticated session.                    

Podstawowe informacje o rozszerzeniu

Nazwa Jumbleberry Steward Jumbleberry Steward
ID bijjeiinbkgifilfeacjmplmfbopefgl
Oficjalny URL https://chromewebstore.google.com/detail/jumbleberry-steward/bijjeiinbkgifilfeacjmplmfbopefgl
Opis A Multi-Function Assistant
Rozmiar pliku 182 KB
Liczba instalacji 19
Aktualna Wersja 3.2.5
Ostatnia Aktualizacja 2024-02-23
Data Publikacji 2022-01-27
Deweloper Squaredance
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://jumbleberry.com/
Adres URL Strony Pomocy https://admin.jumbleberry.com/
Adres URL Strony Polityki Prywatności https://jumbleberry.com/privacy-policy.html
Obsługiwane Języki en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Jumbleberry Steward",
    "description": "A Multi-Function Assistant",
    "version": "3.2.5",
    "offline_enabled": true,
    "permissions": [
        "background",
        "webRequest",
        "webRequestBlocking",
        "cookies",
        "*:\/\/localhost\/*",
        ""
    ],
    "background": {
        "page": "background.html"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/mediaclicktrker.com\/tool\/sales\/add_sales*",
                "*:\/\/*.mediaclicktrker.com\/tool\/sales\/add_sales*"
            ],
            "all_frames": true,
            "js": [
                "assets\/js\/add-sales-inject.js"
            ],
            "run_at": "document_idle"
        },
        {
            "matches": [
                "*:\/\/mediaclicktrker.com\/tool\/sales\/upload_sales*",
                "*:\/\/*.mediaclicktrker.com\/tool\/sales\/upload_sales*"
            ],
            "all_frames": true,
            "js": [
                "assets\/js\/upload-sales-inject.js"
            ],
            "run_at": "document_idle"
        },
        {
            "matches": [
                "*:\/\/mediaclicktrker.com\/popup\/modal\/advertiser\/account\/extras*",
                "*:\/\/*.mediaclicktrker.com\/popup\/modal\/advertiser\/account\/extras*"
            ],
            "all_frames": true,
            "js": [
                "assets\/js\/vanity-inject.js"
            ],
            "run_at": "document_idle"
        },
        {
            "matches": [
                ""
            ],
            "js": [
                "assets\/js\/jquery.js",
                "assets\/js\/plax.js",
                "lib\/watcher.js",
                "lib\/overlay.js",
                "lib\/listener.js"
            ],
            "css": [
                "assets\/css\/overlay.css"
            ],
            "run_at": "document_start"
        }
    ],
    "externally_connectable": {
        "matches": [
            "*:\/\/*.mediaclicktrker.com\/*"
        ]
    },
    "icons": {
        "128": "assets\/images\/icon128.png"
    },
    "web_accessible_resources": [
        "assets\/html\/pixels.html",
        "assets\/images\/logo-black.png",
        "assets\/images\/logo-white.png",
        "assets\/images\/loader.gif",
        "assets\/js\/jquery.js",
        "assets\/js\/pixels.js",
        "assets\/js\/vanity.js",
        "assets\/js\/upload-sales.js",
        "assets\/js\/add-sales.js",
        "assets\/fonts\/gilroy.ttf"
    ],
    "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'"
}