Inspect and view changes in Review comment template for github 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,
"version": "1.0",
"name": "Review comment template for github",
"description": "Review comment template for github",
"icons": {
"16": "images/review_comment_16.png",
"48": "images/review_comment_48.png",
"128": "images/review_comment_128.png"
},
"action": {
"default_icon": "images/review_comment_16.png",
"default_popup": "html/popup.html"
},
"background": {
"service_worker": "background.js"
},
"permissions": [
"background",
"storage"
],
"content_scripts": [
{
"matches": [
"https://github.com/*/",
"https://github.com/*/*"
],
"js": [
"js/jquery-3.6.0.min.js",
"js/content.js"
]
}
],
"content_security_policy": {
"extension_pages": "script-src 'self'; object-src 'self';"
}
}