Inspect and view changes in github-material-icon-theme 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
{
"update_url": "https://clients2.google.com/service/update2/crx",
"manifest_version": 3,
"name": "github-material-icon-theme",
"version": "6.0.3",
"description": "vscode-material-icon-theme for GitHub",
"icons": {
"16": "./logo.png",
"48": "./logo.png",
"128": "./logo.png"
},
"permissions": [
"storage"
],
"content_scripts": [
{
"matches": [
"https://github.com/*"
],
"js": [
"browser-polyfill.js",
"content.js"
],
"css": [
"inject.css"
]
}
],
"background": {
"service_worker": "background.js"
},
"action": {
"default_icon": "./logo.png",
"default_popup": "popup.html"
},
"content_security_policy": {
"extension_pages": "script-src 'self'; object-src 'self'"
},
"web_accessible_resources": [
{
"resources": [
"inject.css"
],
"matches": [
"https://github.com/*"
]
}
]
}