Save Page State

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

Apa itu Save Page State?

Save Page State adalah ekstensi Chrome yang dikembangkan oleh Wing Leung, dan fitur utamanya adalah "Chrome extension to save a state of a page for remote analysis".

Screenshot Ekstensi

screenshot

Unduh Berkas CRX Ekstensi Save Page State

Unduh file ekstensi Save Page State dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

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

Informasi Dasar Ekstensi

Nama Save Page State Save Page State
ID aokllhajmkihfihciggkmpgdhgecgaic
URL Resmi https://chromewebstore.google.com/detail/save-page-state/aokllhajmkihfihciggkmpgdhgecgaic
Deskripsi Chrome extension to save a state of a page for remote analysis
Ukuran File 52.27 KB
Jumlah Instalasi 241
Versi Saat Ini 1.0.1
Terakhir Diperbarui 2018-12-17
Tanggal Publikasi 2018-12-12
Penilaian 1.00/5 Total 2 Penilaian
Pengembang Wing Leung
Email [email protected]
Tipe Pembayaran free
Situs Ekstensi https://github.com/vrtdev/save-page-state
Bahasa yang Didukung 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",
        "*:\/\/*\/*"
    ]
}