Session Copy Plugin

Copies session data from one tab to another

Co to jest Session Copy Plugin?

Session Copy Plugin to rozszerzenie Chrome opracowane przez kthprog, a jego główną funkcją jest „Copies session data from one tab to another”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Session Copy Plugin

Pobierz pliki rozszerzeń Session Copy Plugin 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

                        This plugin allows you to copy all session data from one tab to another in your browser. This makes it easy to test local applications against session data form a production environment.                    

Podstawowe informacje o rozszerzeniu

Nazwa Session Copy Plugin Session Copy Plugin
ID bogpdhabphohphmcnbglpnfigjdjllpf
Oficjalny URL https://chromewebstore.google.com/detail/session-copy-plugin/bogpdhabphohphmcnbglpnfigjdjllpf
Opis Copies session data from one tab to another
Rozmiar pliku 76.45 KB
Liczba instalacji 100
Aktualna Wersja 2.1
Ostatnia Aktualizacja 2021-08-30
Data Publikacji 2021-08-29
Deweloper kthprog
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",
    "name": "Session Copy Plugin",
    "description": "Copies session data from one tab to another",
    "version": "2.1",
    "manifest_version": 3,
    "background": {
        "service_worker": "background.js"
    },
    "options_page": "options.html",
    "permissions": [
        "storage",
        "scripting"
    ],
    "host_permissions": [
        ""
    ],
    "action": {
        "default_popup": "popup.html",
        "default_icon": {
            "16": "\/images\/s_16.png",
            "32": "\/images\/s_32.png",
            "48": "\/images\/s_48.png",
            "128": "\/images\/s_128.png"
        }
    },
    "icons": {
        "16": "\/images\/s_16.png",
        "32": "\/images\/s_32.png",
        "48": "\/images\/s_48.png",
        "128": "\/images\/s_128.png"
    }
}