VideoStickers

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

Vad är VideoStickers?

VideoStickers är en Chrome-tillägg utvecklad av peled.roy, och dess huvudfunktion är "This app lets you pop out videos in your Facebook feed, so you can watch these videos while scrolling".

Tilläggsskärmbilder

screenshot

Ladda ner VideoStickers-förlängningens CRX-fil

Ladda ner VideoStickers-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

                        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)                    

Grundläggande Information om Tillägg

Namn VideoStickers VideoStickers
ID hbcaipbjipmgbdlkdlmdbdenaadelcib
Officiell webbadress https://chromewebstore.google.com/detail/videostickers/hbcaipbjipmgbdlkdlmdbdenaadelcib
Beskrivning This app lets you pop out videos in your Facebook feed, so you can watch these videos while scrolling
Filstorlek 9.18 KB
Antal Installationer 128
Aktuell Version 1.1
Senast Uppdaterad 2013-06-25
Publiceringsdatum 2013-06-25
Betyg 5.00/5 Totalt 1 Betyg
Utvecklare peled.roy
Betalningssätt free
Stödda Språk 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"
    ]
}