Inspect and view changes in chartio static cache 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",
"content_scripts": [
{
"js": [
"jquery.min.js",
"sweetalert2.all.min.js",
"content.js"
],
"css": [
"sweetalert2.min.css"
],
"matches": [
"https://chartio.com/*"
],
"run_at": "document_end"
}
],
"background": {
"scripts": [
"background.js"
],
"persistent": false
},
"permissions": [
"tabs"
],
"description": "app description",
"icons": {
"16": "icons/icon2.png",
"48": "icons/icon.png",
"128": "icons/icon.png"
},
"manifest_version": 2,
"name": "chartio static cache",
"options_page": "option.html",
"version": "1.0.5",
"browser_action": {
"default_icon": "icons/icon2.png",
"default_title": "test"
}
}