Picture in Picture

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

Wat is Picture in Picture?

Picture in Picture is een Chrome-extensie ontwikkeld door maniac, en de belangrijkste functie is "Allows switch to picture in picture mode for sites where blocked right mouse click".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie Picture in Picture

Download Picture in Picture-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                                            

Basisinformatie over de Extensie

Naam Picture in Picture Picture in Picture
ID jkjmjfjggohhnhonoejajejmoifdbmce
Officiële URL https://chromewebstore.google.com/detail/picture-in-picture/jkjmjfjggohhnhonoejajejmoifdbmce
Beschrijving Allows switch to picture in picture mode for sites where blocked right mouse click
Bestandsgrootte 19.24 KB
Aantal Installaties 15
Huidige Versie 0.0.1
Laatst Bijgewerkt 2018-12-20
Publicatiedatum 2018-12-18
Beoordeling 5.00/5 Totaal 1 Beoordelingen
Ontwikkelaar maniac
Betalingswijze free
Extensiewebsite https://github.com/the-maniac/picture-in-picture
Ondersteunde Talen 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"
    ]
}