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": "__MSG_extensionName__",
"version": "1.0.0",
"description": "__MSG_extensionDescription__",
"permissions": [
"storage",
"tabs",
"scripting"
],
"host_permissions": [
"*:\/\/*.youtube.com\/*"
],
"action": {
"default_popup": "popup.html",
"default_title": "YouTube Looper",
"default_icon": {
"16": "icons\/16x16.png",
"48": "icons\/48x48.png",
"64": "icons\/64x64.png",
"96": "icons\/96x96.png",
"128": "icons\/128x128.png"
}
},
"default_locale": "en",
"content_scripts": [
{
"matches": [
"*:\/\/*.youtube.com\/*"
],
"js": [
"content.js"
],
"run_at": "document_end"
}
],
"background": {
"service_worker": "background.js"
},
"icons": {
"16": "icons\/16x16.png",
"48": "icons\/48x48.png",
"128": "icons\/128x128.png"
}
}