Picture in Picture

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

Τι είναι το Picture in Picture;

Το Picture in Picture είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον maniac, και η κύρια λειτουργία του είναι "Allows switch to picture in picture mode for sites where blocked right mouse click".

Στιγμιότυπα Επέκτασης

screenshot

Λήψη αρχείου CRX της επέκτασης Picture in Picture

Λήψη αρχείων επέκτασης Picture in Picture σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                                            

Βασικές Πληροφορίες Επέκτασης

Όνομα Picture in Picture Picture in Picture
ID jkjmjfjggohhnhonoejajejmoifdbmce
Επίσημο URL https://chromewebstore.google.com/detail/picture-in-picture/jkjmjfjggohhnhonoejajejmoifdbmce
Περιγραφή Allows switch to picture in picture mode for sites where blocked right mouse click
Μέγεθος Αρχείου 19.24 KB
Αριθμός Εγκαταστάσεων 15
Τρέχουσα Έκδοση 0.0.1
Τελευταία Ενημέρωση 2018-12-20
Ημερομηνία Δημοσίευσης 2018-12-18
Αξιολόγηση 5.00/5 Συνολικά 1 Αξιολογήσεις
Προγραμματιστής maniac
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης https://github.com/the-maniac/picture-in-picture
Υποστηριζόμενες Γλώσσες 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"
    ]
}