Save Page State

Chrome extension to save a state of a page for remote analysis

Co to jest Save Page State?

Save Page State to rozszerzenie Chrome opracowane przez Wing Leung, a jego główną funkcją jest „Chrome extension to save a state of a page for remote analysis”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Save Page State

Pobierz pliki rozszerzeń Save Page State 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

                        A chrome extension to save the state of a page for further analysis.                    

Podstawowe informacje o rozszerzeniu

Nazwa Save Page State Save Page State
ID aokllhajmkihfihciggkmpgdhgecgaic
Oficjalny URL https://chromewebstore.google.com/detail/save-page-state/aokllhajmkihfihciggkmpgdhgecgaic
Opis Chrome extension to save a state of a page for remote analysis
Rozmiar pliku 52.27 KB
Liczba instalacji 241
Aktualna Wersja 1.0.1
Ostatnia Aktualizacja 2018-12-17
Data Publikacji 2018-12-12
Ocena 1.00/5 Łącznie 2 Oceny
Deweloper Wing Leung
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://github.com/vrtdev/save-page-state
Obsługiwane Języki en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Save Page State",
    "version": "1.0.1",
    "description": "Chrome extension to save a state of a page for remote analysis",
    "manifest_version": 2,
    "icons": {
        "128": "images\/icon.png"
    },
    "browser_action": {
        "default_icon": "images\/icon.png"
    },
    "background": {
        "scripts": [
            "js\/background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "js\/content.js"
            ]
        }
    ],
    "permissions": [
        "activeTab",
        "pageCapture",
        "*:\/\/*\/*"
    ]
}