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",
"name": "YouTube Auto Loop",
"version": "2.1.1",
"manifest_version": 3,
"description": "Automatically remember the settings to loop\/unloop all YouTube videos.",
"homepage_url": "https:\/\/github.com\/aynorway",
"icons": {
"16": "icons\/icon16.png",
"48": "icons\/icon48.png",
"128": "icons\/icon128.png"
},
"permissions": [
"activeTab",
"storage"
],
"host_permissions": [
"http:\/\/www.youtube.com\/*",
"https:\/\/www.youtube.com\/*"
],
"options_ui": {
"page": "src\/option\/options.html",
"open_in_tab": true
},
"background": {
"service_worker": "src\/background.js"
},
"action": {
"default_title": "Auto Loop YouTube Videos",
"default_icon": {
"19": "icons\/icon19.png",
"38": "icons\/icon38.png"
},
"default_popup": "src\/option\/popup.html"
},
"content_scripts": [
{
"all_frames": true,
"matches": [
"http:\/\/www.youtube.com\/*",
"https:\/\/www.youtube.com\/*"
],
"css": [
"css\/inject.css"
],
"js": [
"src\/inject\/inject.js"
]
}
],
"browser_specific_settings": {
"gecko": {
"id": "{16f62fad-24c3-4ef7-834e-2cfbe572875d}"
}
}
}