FlashPlayer - SWF to HTML

Open SWF links of Adobe Animate (Flash) in a pure sandboxed JavaScript emulator

FlashPlayer - SWF to HTML क्या है?

FlashPlayer - SWF to HTML chandler.stimson द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Open SWF links of Adobe Animate (Flash) in a pure sandboxed JavaScript emulator"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में FlashPlayer - SWF to HTML एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        This extension plays  SWF objects of Adobe Animate (Flash) in a pure JS emulator without the need to have a native Flash plug-in like Adobe FlashPlayer. The extension uses two open-source Flash to JS libraries (Ruffle and SWF2JS) as its emulation engine. By default, the extension does not play Flash objects instead, the user presses the toolbar button for the extension to find all available Flash objects or links in the current webpage. It will offer the user to select the proper SWF object and then send the link to a stand-alone emulator window. This way Flash objects are only functioning when there is a request. For Flash links, the extension adds a context menu item to these links so you can directly emulate an SWF link. Since this extension does not run Flash by default, it is lighter than other similar extensions. It only runs Flash on demand.

Features:
Runs a pure JavaScript-based Flash emulator
Does not require any native plug-ins
Run in a private sandboxed window to protect the user privacy
Use two different engines: Ruffle (https://ruffle.rs/) and SWF2JS (https://swf2js.com/)
Optionally emulate all embedded flash objects inside the page (use action's right-click context menu)

Notes:
1. This extension uses two open-source emulator engines. The SWF2JS library still does not support all methods available so some SWF objects may crash the engine.
The extension always tries to open the emulation window the same size as the actual Flash object, however, you can resize the window to the proper size anytime.                    

एक्सटेंशन की मूल जानकारी

नाम FlashPlayer - SWF to HTML FlashPlayer - SWF to HTML
ID nodnmpgjlnclahkmgjiinfjklgbbgecg
आधिकारिक URL https://chromewebstore.google.com/detail/flashplayer-swf-to-html/nodnmpgjlnclahkmgjiinfjklgbbgecg
विवरण Open SWF links of Adobe Animate (Flash) in a pure sandboxed JavaScript emulator
फ़ाइल का आकार 9.39 MB
स्थापना संख्या 73,417
वर्तमान संस्करण 0.2.8
अंतिम अपडेट 2023-11-06
प्रकाशन तिथि 2020-11-25
रेटिंग 3.51/5 कुल 43 रेटिंग्स
डेवलपर chandler.stimson
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://webextension.org/listing/flashplayer.html
सहायता पृष्ठ URL https://webextension.org/listing/flashplayer.htmlhttps://webextension.org/listing/flashplayer.html
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "version": "0.2.8",
    "name": "FlashPlayer - SWF to HTML",
    "description": "Open SWF links of Adobe Animate (Flash) in a pure sandboxed JavaScript emulator",
    "permissions": [
        "storage",
        "activeTab",
        "scripting",
        "contextMenus",
        "notifications"
    ],
    "host_permissions": [
        "*:\/\/*\/*"
    ],
    "icons": {
        "16": "data\/icons\/16.png",
        "32": "data\/icons\/32.png",
        "48": "data\/icons\/48.png",
        "64": "data\/icons\/64.png",
        "128": "data\/icons\/128.png",
        "256": "data\/icons\/256.png",
        "512": "data\/icons\/512.png"
    },
    "background": {
        "service_worker": "worker.js"
    },
    "homepage_url": "https:\/\/webextension.org\/listing\/flashplayer.html",
    "action": {
        "default_title": "Click to search for embedded SWF contents"
    },
    "sandbox": {
        "pages": [
            "data\/player\/player.html"
        ]
    },
    "content_scripts": [
        {
            "match_about_blank": true,
            "matches": [
                ""
            ],
            "js": [
                "data\/page.js"
            ],
            "run_at": "document_start",
            "all_frames": true
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "\/data\/player\/ruffle\/*.js",
                "\/data\/player\/ruffle\/*.wasm"
            ],
            "matches": [
                "*:\/\/*\/*"
            ]
        }
    ],
    "commands": {
        "_execute_action": []
    }
}