Inspect and view changes in Can I React? source codes across current and past versions
Premium users can view and search full source code, and see the source code differences
between two versions.
Upgrade to premium
manifest.json
{
"$schema": "https://json.schemastore.org/chrome-manifest",
"manifest_version": 3,
"name": "Can I React?",
"version": "1.1.1",
"description": "Displays wether a YouTube channel allows reactions video and in what form.",
"permissions": [
"storage",
"identity"
],
"author": "robin.software",
"homepage_url": "https://github.com/dieserRobin/canireact-extension",
"default_locale": "en",
"background": {
"service_worker": "background.bundle.js"
},
"action": {
"default_popup": "popup.html"
},
"host_permissions": [
"https://www.youtube.com/*"
],
"web_accessible_resources": [
{
"matches": [
"https://www.youtube.com/*"
],
"resources": [
"languages/*.json"
]
},
{
"matches": [
"https://www.youtube.com/*"
],
"resources": [
"images/*.svg",
"images/*.png"
]
}
],
"content_scripts": [
{
"matches": [
"*://youtube.com/*",
"*://www.youtube.com/*",
"*://m.youtube.com/*"
],
"exclude_matches": [
"*://*.music.youtube.com/*"
],
"js": [
"./content.bundle.js"
]
}
],
"short_name": "canireact",
"icons": {
"16": "/images/canireact_icon-16.png",
"32": "/images/canireact_icon-32.png",
"48": "/images/canireact_icon-48.png",
"128": "/images/canireact_icon-128.png"
},
"browser_specific_settings": {
"gecko": {
"id": "extension@canireact.com",
"strict_min_version": "58.0"
}
},
"update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}