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 กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        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
URL หน้าช่วยเหลือ https://github.com/krum110487/GameSaver/issues
URL หน้านโยบายความเป็นส่วนตัว 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\/*"
    ]
}