Picture in Picture

Allows switch to picture in picture mode for sites where blocked right mouse click

Hvad er Picture in Picture?

Picture in Picture er en Chrome-udvidelse udviklet af maniac, og dens hovedfunktion er "Allows switch to picture in picture mode for sites where blocked right mouse click".

Udvidelsesskærmbilleder

screenshot

Download Picture in Picture-udvidelses-CRX-fil

Download Picture in Picture-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

                                            

Grundlæggende oplysninger om udvidelsen

Navn Picture in Picture Picture in Picture
ID jkjmjfjggohhnhonoejajejmoifdbmce
Officiel URL https://chromewebstore.google.com/detail/picture-in-picture/jkjmjfjggohhnhonoejajejmoifdbmce
Beskrivelse Allows switch to picture in picture mode for sites where blocked right mouse click
Filstørrelse 19.24 KB
Antal Installationer 15
Nuværende Version 0.0.1
Senest Opdateret 2018-12-20
Udgivelsesdato 2018-12-18
Bedømmelse 5.00/5 Samlet 1 Bedømmelser
Udvikler maniac
Betalingsmetode free
Udvidelseswebsted https://github.com/the-maniac/picture-in-picture
Understøttede Sprog en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Picture in Picture",
    "short_name": "PiP",
    "description": "Allows switch to picture in picture mode for sites where blocked right mouse click",
    "version": "0.0.1",
    "icons": {
        "16": "icon16.png",
        "24": "icon24.png",
        "32": "icon32.png",
        "64": "icon64.png",
        "128": "icon128.png"
    },
    "browser_action": {
        "default_icon": "icon32.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "js": [
                "main.js"
            ],
            "matches": [
                ""
            ]
        },
        {
            "js": [
                "others.js"
            ],
            "matches": [
                ""
            ],
            "all_frames": true
        }
    ],
    "permissions": [
        "activeTab"
    ]
}