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,
"short_name": "React App",
"name": "Foxly - URL Shortener",
"version": "0.1.3",
"action": {
"default_title": "Foxly - URL Shortener",
"default_icon": {
"48": "foxlyme.png"
}
},
"icons": {
"16": "foxlyme.png",
"48": "foxlyme.png",
"128": "foxlyme.png"
},
"permissions": [
"tabs",
"storage",
"activeTab"
],
"background": {
"service_worker": "background.js"
},
"content_scripts": [
{
"matches": [
"http:\/\/*\/*",
"https:\/\/*\/*"
],
"js": [
"content_script.js"
]
}
],
"content_security_policy": {
"extension_pages": "script-src 'self'; object-src 'self'"
},
"web_accessible_resources": [
{
"matches": [
"https:\/\/*\/*"
],
"resources": [
"images\/*",
"fonts\/*",
"index.html"
]
}
],
"host_permissions": [
"https:\/\/*\/*"
]
}