Use Data247 services from within your web browser!
Premium users can view and search full source code, and see the source code differences
between two versions.
Upgrade to premium
manifest.json
{
"name": "Data247",
"version": "1.3",
"manifest_version": 3,
"description": "Use Data247 services from within your web browser!",
"permissions": [
"storage",
"clipboardWrite"
],
"icons": {
"16": "icons/icon16.png",
"32": "icons/icon32.png",
"64": "icons/icon64.png",
"128": "icons/icon128.png",
"256": "icons/icon256.png"
},
"web_accessible_resources": [
{
"resources": [
"icons/*.png",
"databoxpage.html"
],
"matches": [
"<all_urls>"
],
"use_dynamic_url": true
}
],
"background": {
"service_worker": "js/background.js"
},
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"css": [
"css/jquery-ui.min.css",
"css/content.css"
],
"js": [
"js/lib/jquery.min.js",
"js/lib/jquery-ui.min.js",
"js/lib/popper.min.js",
"js/lib/chrome-storage-promise.js",
"js/constants.js",
"js/api.js",
"js/parse_page.js",
"js/sheet.js",
"js/selection_tooltip.js",
"js/databox.js",
"js/content_script.js"
]
}
],
"action": {
"default_icon": {
"16": "icons/icon16.png",
"32": "icons/icon32.png"
},
"default_title": "Data247"
},
"options_page": "settings.html",
"update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}