Inspect and view changes in Facilidades SGD 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",
"manifest_version": 2,
"name": "Facilidades SGD",
"description": "Ferramentas para facilitar a gestão de solicitações no suporte",
"browser_action": {
"default_popup": "popup.html",
"default_icon": {
"16": "img/support16.png",
"32": "img/support32.png"
}
},
"version": "1.3",
"icons": {
"16": "img/support16.png",
"48": "img/support48.png",
"96": "img/support96.png",
"128": "img/support128.png"
},
"content_scripts": [
{
"matches": [
"https://sgd.dominiosistemas.com.br/sgsc/faces/sscs.html",
"https://sgd.legalone.com.br/sgsc/faces/sscs.html"
],
"js": [
"js/jquery.min.js",
"js/app.js"
]
}
],
"permissions": [
"activeTab",
"storage",
"tabs",
"management",
"notifications"
],
"background": {
"scripts": [
"js/jquery.min.js",
"js/background.js"
],
"persistent": true
}
}