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,
"name": "Loop Speed Screenshot for YouTube",
"version": "1.0.1",
"description": "Loop videos, control playback speed, and capture screenshots on YouTube - all in one tool",
"permissions": [
"activeTab",
"scripting",
"storage"
],
"host_permissions": [
"*:\/\/*.youtube.com\/*"
],
"action": {
"default_popup": "popup.html",
"default_icon": {
"16": "icon48.png",
"48": "icon48.png",
"128": "icon48.png"
}
},
"content_scripts": [
{
"matches": [
"*:\/\/*.youtube.com\/*"
],
"js": [
"content.js"
],
"css": [
"styles.css"
],
"run_at": "document_end"
}
],
"icons": {
"16": "icon48.png",
"48": "icon48.png",
"128": "icon48.png"
}
}