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": "Sync To IO Drive",
"version": "0.17",
"description": "Chrome extension for IO Drive",
"action": [],
"options_ui": {
"page": "options.html",
"open_in_tab": false
},
"content_scripts": [
{
"matches": [
"https:\/\/*\/PORTAL\/*",
"http:\/\/*\/PORTAL\/*"
],
"js": [
"content.js"
]
}
],
"permissions": [
"contextMenus",
"nativeMessaging",
"notifications",
"tabs",
"storage"
],
"icons": {
"16": "iologo16.png",
"48": "iologo48.png",
"128": "iologo128.png"
},
"background": {
"service_worker": "background.js"
}
}