Picture in Picture Video

Extension to trigger PIP!

Vad är Picture in Picture Video?

Picture in Picture Video är en Chrome-tillägg utvecklad av mickeyjc, och dess huvudfunktion är "Extension to trigger PIP!".

Tilläggsskärmbilder

screenshot

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

Ladda ner Picture in Picture Video-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

                        Trigger Picture in Picture mode for HTML 5 video element.
Should work for all web page that has an HTML 5 video. eg, youtube

- Install the extension
- Browse to the webpage that contains a web video
- The PIP extension icon should turn Green
- Click the PIP extension icon
- Web video will be in picture in picture mode.                    

Grundläggande Information om Tillägg

Namn Picture in Picture Video Picture in Picture Video
ID cfbelahlacbmjflikmaagnfpoadanpfh
Officiell webbadress https://chrome.google.com/webstore/detail/picture-in-picture-video/cfbelahlacbmjflikmaagnfpoadanpfh
Beskrivning Extension to trigger PIP!
Filstorlek 11.21 KB
Antal Installationer 1,000
Aktuell Version 1.0
Senast Uppdaterad 2019-11-30
Publiceringsdatum 2019-11-30
Betyg 5.00/5 Totalt 1 Betyg
Utvecklare mickeyjc
E-post [email protected]
Betalningssätt free
Stödda Språk en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Picture in Picture Video",
    "version": "1.0",
    "description": "Extension to trigger PIP!",
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "permissions": [
        "tabs",
        "activeTab",
        "storage",
        "https:\/\/*\/"
    ],
    "browser_action": {
        "default_title": "Picture in Picture",
        "default_icon": {
            "16": "images\/icon16x.png",
            "32": "images\/icon32x.png",
            "48": "images\/icon32x.png",
            "128": "images\/icon128x.png"
        }
    },
    "manifest_version": 2
}