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": "Reaction Free Extension",
"version": "0.1",
"manifest_version": 3,
"description": "Add a youtube video reaction to your Streaming service video player",
"host_permissions": [
"*:\/\/*.crunchyroll.com\/*"
],
"permissions": [
"tabs",
"activeTab",
"scripting",
"storage",
"webNavigation",
"https:\/\/*.crunchyroll.com\/*"
],
"action": {
"default_icon": "icon.png",
"default_title": "Open Side Panel"
},
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"js": [
"content.js"
],
"css": [
"content.css"
],
"all_frames": true
},
{
"matches": [
"<all_urls>"
],
"js": [
"script.js"
],
"all_frames": true,
"run_at": "document_start"
}
],
"web_accessible_resources": [
{
"resources": [
"script.js"
],
"matches": [
"<all_urls>"
]
}
],
"background": {
"service_worker": "background.js"
}
}