VideoStickers

This app lets you pop out videos in your Facebook feed, so you can watch these videos while scrolling

Was ist VideoStickers?

VideoStickers ist eine Chrome-Erweiterung, die von peled.roy entwickelt wurde, und ihr Hauptmerkmal ist "This app lets you pop out videos in your Facebook feed, so you can watch these videos while scrolling".

Erweiterungsscreenshots

screenshot

VideoStickers-Erweiterungs-CRX-Datei herunterladen

Laden Sie VideoStickers-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        Once installed, each video you will start to play on Facebook will have a pop-out button on its top right corner.
When clicked, the video will remain in a fixed position to the bottom left corner of your browser, so you can scroll away without losing the video!

(Idea by David Davidov)                    

Grundlegende Informationen zur Erweiterung

Name VideoStickers VideoStickers
ID hbcaipbjipmgbdlkdlmdbdenaadelcib
Offizielle URL https://chromewebstore.google.com/detail/videostickers/hbcaipbjipmgbdlkdlmdbdenaadelcib
Beschreibung This app lets you pop out videos in your Facebook feed, so you can watch these videos while scrolling
Dateigröße 9.18 KB
Installationsanzahl 128
Aktuelle Version 1.1
Letztes Update 2013-06-25
Veröffentlichungsdatum 2013-06-25
Bewertung 5.00/5 Insgesamt 1 Bewertungen
Entwickler peled.roy
Zahlungsart free
Unterstützte Sprachen en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "VideoStickers",
    "version": "1.1",
    "description": "This app lets you pop out videos in your Facebook feed, so you can watch these videos while scrolling",
    "icons": {
        "128": "logo.png"
    },
    "permissions": [
        "https:\/\/*.facebook.com\/*",
        "http:\/\/*.facebook.com\/*"
    ],
    "content_scripts": [
        {
            "js": [
                "filter.js"
            ],
            "css": [
                "inject.css"
            ],
            "matches": [
                "https:\/\/www.facebook.com\/*"
            ],
            "run_at": "document_end"
        }
    ],
    "content_security_policy": "default-src 'self' * 'unsafe-inline' 'unsafe-eval'; object-src 'self'; script-src 'self' https:\/\/ssl.google-analytics.com https:\/\/connect.facebook.net https:\/\/graph.facebook.com https:\/\/api-read.facebook.com",
    "web_accessible_resources": [
        "back.png",
        "pop.png"
    ]
}