Data is synced from the Chrome Web Store. View the official store page for the most current information.
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 3,
"description": "Allows you to tape most videos to the window so you can scroll around or read on while the video plays on screen.",
"name": "Video Tape",
"content_scripts": [
{
"js": [
"Cr_min.js",
"vidstick.user.js"
],
"run_at": "document_idle",
"matches": [
"<all_urls>"
]
},
{
"css": [
"video-sticky-tape-embeded-full-height.user.css"
],
"matches": [
"*:\/\/*.redditmedia.com\/mediaembed\/*"
],
"all_frames": true
}
],
"action": {
"default_icon": {
"19": "images\/inactive\/icon19.png",
"38": "images\/inactive\/icon38.png"
},
"default_title": "VideoTape",
"default_popup": "popup.html"
},
"background": {
"service_worker": "background.js"
},
"options_page": "options.html",
"icons": {
"16": "images\/icon16.png",
"32": "images\/icon32.png",
"48": "images\/icon48.png",
"64": "images\/icon64.png",
"128": "images\/icon128.png"
},
"web_accessible_resources": [
{
"resources": [
"vidstick.user.css"
],
"matches": [
"<all_urls>",
"file:\/\/\/*"
]
}
],
"permissions": [
"activeTab",
"tabs"
],
"version": "0.0.3.1"
}