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",
"manifest_version": 3,
"name": "GitHub File Uploader",
"version": "1.3.1",
"description": "Upload files to GitHub, manage repositories, change visibility, and create pull requests with drag-and-drop interface",
"author": "GitHub Uploader Extension",
"permissions": [
"storage",
"identity",
"tabs",
"activeTab",
"webRequest",
"notifications"
],
"host_permissions": [
"https:\/\/api.github.com\/*",
"https:\/\/github.com\/*"
],
"background": {
"service_worker": "js\/background-improved.js"
},
"action": {
"default_popup": "popup-improved.html",
"default_icon": {
"16": "icons\/icon-16.png",
"32": "icons\/icon-32.png",
"48": "icons\/icon-48.png",
"128": "icons\/icon-128.png"
},
"default_title": "GitHub File Uploader"
},
"icons": {
"16": "icons\/icon-16.png",
"32": "icons\/icon-32.png",
"48": "icons\/icon-48.png",
"128": "icons\/icon-128.png"
},
"content_scripts": [
{
"matches": [
"https:\/\/github.com\/*"
],
"js": [
"js\/content.js"
],
"css": [
"css\/content.css"
]
}
],
"web_accessible_resources": [
{
"resources": [
"css\/*",
"js\/*",
"icons\/*"
],
"matches": [
"<all_urls>"
]
}
],
"content_security_policy": {
"extension_pages": "script-src 'self'; object-src 'self'"
}
}