Picture-in-Picture Viewer

Watch video using the Picture-in-Picture API.

Vad är Picture-in-Picture Viewer?

Picture-in-Picture Viewer är en Chrome-tillägg utvecklad av https://thorium.rocks, och dess huvudfunktion är "Watch video using the Picture-in-Picture API.".

Tilläggsskärmbilder

screenshot

Ladda ner Picture-in-Picture Viewer-förlängningens CRX-fil

Ladda ner Picture-in-Picture Viewer-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        A simple Chromium Extension to enable the Picture-in-Picture Web API in Chromium.

It is a fork of https://chrome.google.com/webstore/detail/picture-in-picture-extens/hkgfoiooedgoejojocmhlaklaeopbecg with some fixes, and removed Google Analytics tracking.

  - Alex313031                    

Grundläggande Information om Tillägg

Namn Picture-in-Picture Viewer Picture-in-Picture Viewer
ID kgfcmiijchdkbknmjnojfngnapkibkdh
Officiell webbadress https://chromewebstore.google.com/detail/picture-in-picture-viewer/kgfcmiijchdkbknmjnojfngnapkibkdh
Beskrivning Watch video using the Picture-in-Picture API.
Filstorlek 11.12 KB
Antal Installationer 2,028
Aktuell Version 1.12.2
Senast Uppdaterad 2023-09-02
Publiceringsdatum 2023-04-26
Betyg 5.00/5 Totalt 3 Betyg
Utvecklare https://thorium.rocks
E-post [email protected]
Betalningssätt free
Tilläggswebbplats https://github.com/Alex313031/picture-in-picture-viewer
Hjälpsida URL https://github.com/Alex313031/picture-in-picture-viewer/issues
URL till Sekretesspolicy Sidan https://thorium.rocks/COC.html
Stödda Språk en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Picture-in-Picture Viewer",
    "short_name": "PiP Viewer",
    "author": "Alex313031",
    "description": "Watch video using the Picture-in-Picture API.",
    "homepage_url": "https:\/\/github.com\/Alex313031\/picture-in-picture-viewer",
    "manifest_version": 3,
    "minimum_chrome_version": "88",
    "offline_enabled": true,
    "version": "1.12.2",
    "version_name": "1.12.2",
    "icons": {
        "16": "assets\/icon16.png",
        "24": "assets\/icon24.png",
        "32": "assets\/icon32.png",
        "48": "assets\/icon48.png",
        "64": "assets\/icon64.png",
        "128": "assets\/icon128.png",
        "256": "assets\/icon256.png"
    },
    "background": {
        "service_worker": "background.js"
    },
    "action": {
        "default_icon": {
            "19": "assets\/icon19.png",
            "38": "assets\/icon38.png"
        }
    },
    "commands": {
        "_execute_action": {
            "suggested_key": {
                "windows": "Alt+P",
                "mac": "Alt+P",
                "chromeos": "Alt+P",
                "linux": "Alt+P"
            }
        }
    },
    "permissions": [
        "scripting"
    ],
    "host_permissions": [
        ""
    ]
}