Game Saver

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

ما هو Game Saver؟

Game Saver هو إضافة Chrome تم تطويرها بواسطة krum110487، والميزة الرئيسية لها هي "Helps save game content from websites to preserve them for future generations".

لقطات شاشة التمديد

screenshot

تحميل ملف CRX للإضافة Game Saver

قم بتنزيل ملفات الامتداد Game Saver بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        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.                    

معلومات أساسية عن التمديد

الاسم Game Saver Game Saver
ID lihjdneobgflplacgfokejchlhdojjnh
عنوان URL الرسمي https://chromewebstore.google.com/detail/game-saver/lihjdneobgflplacgfokejchlhdojjnh
الوصف Helps save game content from websites to preserve them for future generations
حجم الملف 379 KB
عدد التثبيتات 1,081
النسخة الحالية 1.0.0
آخر تحديث 2020-12-13
تاريخ النشر 2020-12-13
تقييم 1.00/5 مجموع تقييمات 1
المطور krum110487
البريد الإلكتروني [email protected]
نوع الدفع free
موقع الإضافة https://github.com/krum110487/GameSaver
عنوان صفحة المساعدة https://github.com/krum110487/GameSaver/issues
عنوان صفحة سياسة الخصوصية https://github.com/krum110487/GameSaver/blob/main/PRIVACYPOLICY.md
اللغات المدعومة 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\/*"
    ]
}