Game Saver

Helps save game content from websites to preserve them for future generations

Cos'è Game Saver?

Game Saver è un'estensione di Chrome sviluppata da krum110487, e la sua funzione principale è "Helps save game content from websites to preserve them for future generations".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Game Saver

Scarica i file di estensione Game Saver in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        Game Saver is used to quickly and easily dump flash games and their required files by simply playing the game. This is urgent to have asap as flash is going away.

Future releases will also work on HTML5 content, but as of now I want the focus to be flash.                    

Informazioni di Base sull'Estensione

Nome Game Saver Game Saver
ID lihjdneobgflplacgfokejchlhdojjnh
URL Ufficiale https://chromewebstore.google.com/detail/game-saver/lihjdneobgflplacgfokejchlhdojjnh
Descrizione Helps save game content from websites to preserve them for future generations
Dimensione del File 379 KB
Conteggio Installazioni 1,081
Versione Corrente 1.0.0
Ultimo Aggiornamento 2020-12-13
Data di Pubblicazione 2020-12-13
Valutazione 1.00/5 Totale 1 Valutazioni
Sviluppatore krum110487
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/krum110487/GameSaver
URL della Pagina di Aiuto https://github.com/krum110487/GameSaver/issues
URL della Pagina della Politica sulla Privacy https://github.com/krum110487/GameSaver/blob/main/PRIVACYPOLICY.md
Lingue Supportate en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Game Saver",
    "version": "1.0.0",
    "description": "Helps save game content from websites to preserve them for future generations",
    "manifest_version": 2,
    "minimum_chrome_version": "10.0",
    "devtools_page": "\/devtools\/bootstrap.html",
    "permissions": [
        "http:\/\/*\/",
        "https:\/\/*\/",
        "webRequest",
        "webNavigation",
        "activeTab",
        "tabs",
        "storage",
        "unlimitedStorage",
        "clipboardWrite"
    ],
    "browser_action": {
        "default_title": "Game Saver",
        "default_popup": "pages\/popup.html",
        "default_icon": {
            "128": "images\/icon_grey.png"
        }
    },
    "background": {
        "scripts": [
            "background\/hash.js",
            "background\/queue.js",
            "background\/listener.js",
            "background\/extTabState.js",
            "background\/extEventMgr.js",
            "background\/gameSaver.js",
            "background\/gameSaverImpl.js"
        ],
        "persistent": true
    },
    "web_accessible_resources": [
        "js\/pages\/*",
        "js\/library\/*"
    ]
}