Inspect and view changes in GitZip 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,
"name": "GitZip for github",
"description": "It can make the sub-directories and files of github repository as zip and download it",
"version": "1.0.4",
"icons": {
"128": "images/icon-128px.png"
},
"action": {
"default_popup": "popup.html"
},
"options_ui": {
"page": "options.html",
"open_in_tab": false
},
"background": {
"service_worker": "js/background.js"
},
"permissions": [
"storage",
"contextMenus"
],
"host_permissions": [
"https://api.github.com/*"
],
"content_scripts": [
{
"matches": [
"*://github.com/*"
],
"js": [
"js/content/jszip.min.js",
"js/content/FileSaver.min.js",
"js/content/main.js"
],
"css": [
"css/main.css"
]
},
{
"matches": [
"*://kinolien.github.io/gitzip/*"
],
"js": [
"js/content/keysync.js"
]
},
{
"matches": [
"*://gitzip.org/gettoken/success"
],
"js": [
"js/content/autosave.js"
]
}
],
"content_security_policy": {
"extension_pages": "script-src 'self'; object-src 'self'; worker-src 'self'"
}
}