VideoStickers
This app lets you pop out videos in your Facebook feed, so you can watch these videos while scrolling
What is VideoStickers?
VideoStickers is a Chrome extension developed by peled.roy, and its main feature is "This app lets you pop out videos in your Facebook feed, so you can watch these videos while scrolling".
Extension Screenshots
Download VideoStickers Extension CRX File
Download VideoStickers extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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)
Extension Basic Information
Name | VideoStickers |
ID | hbcaipbjipmgbdlkdlmdbdenaadelcib |
Official URL | https://chromewebstore.google.com/detail/videostickers/hbcaipbjipmgbdlkdlmdbdenaadelcib |
Description | This app lets you pop out videos in your Facebook feed, so you can watch these videos while scrolling |
File Size | 9.18 KB |
Installation Count | 128 |
Current Version | 1.1 |
Last Updated | 2013-06-25 |
Publish Date | 2013-06-25 |
Rating | 5.00/5 Total 1 Ratings |
Developer | peled.roy |
Payment Type | free |
Supported Languages | 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" ] } |