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 and Learn for YouTube",
"version": "1.0.0",
"description": "custommize loop sections of a YouTube video and learn based on it.",
"permissions": [
"windows",
"identity",
"storage"
],
"icons": {
"16": "images\/icon16.png",
"48": "images\/icon48.png",
"96": "images\/icon96.png",
"128": "images\/icon128.png"
},
"background": {
"type": "module",
"service_worker": "background.js"
},
"host_permissions": [
"*:\/\/www.youtube.com\/*",
"https:\/\/api.acdevent.com\/*"
],
"oauth2": {
"client_id": "60246810296-2pmsjqfrepv7tpb6supjb99fmh0u8dg9.apps.googleusercontent.com",
"scopes": [
"openid",
"email",
"profile"
]
},
"content_scripts": [
{
"matches": [
"*:\/\/www.youtube.com\/*"
],
"js": [
"utils.js",
"content.js"
],
"run_at": "document_start",
"css": [
"style.css"
]
}
],
"web_accessible_resources": [
{
"resources": [
"icons\/loop_infinity.svg"
],
"matches": [
"<all_urls>"
]
}
],
"action": {
"default_icon": {
"16": "images\/icon16.png",
"48": "images\/icon48.png",
"96": "images\/icon96.png"
}
}
}