Inspect and view changes in Adams12 Resources Helper 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
{
"manifest_version": 3,
"name": "Adams12 Resources Helper",
"description": "This extension is for Adams12 school district users.",
"version": "1.36",
"background": {
"service_worker": "service_worker.js",
"type": "module"
},
"permissions": [
"contextMenus",
"tabs",
"activeTab",
"offscreen",
"clipboardWrite"
],
"host_permissions": [
"http://*.adams12.org/*",
"https://*.adams12.org/*"
],
"action": {
"default_icon": "img/icon.png",
"default_popup": "popup.html"
},
"icons": {
"16": "img/AD12ResourcesImage16.png",
"32": "img/AD12ResourcesImage32.png",
"48": "img/AD12ResourcesImage48.png",
"128": "img/AD12ResourcesImage.png"
},
"content_scripts": [
{
"matches": [
"https://ic.adams12.org/*",
"https://ic-testing.adams12.org/*",
"https://ic-dev.adams12.org/*",
"https://ic-testing-olr.adams12.org/*"
],
"js": [
"jquery-2.1.4.js",
"content_ic.js"
],
"all_frames": true,
"run_at": "document_end"
},
{
"matches": [
"https://webfarm-dev.adams12.org/dev/datadashboard/*",
"https://webfarm-dev.adams12.org/test/datadashboard/*",
"https://webfarm.adams12.org/datadashboard/*"
],
"js": [
"jquery-2.1.4.js",
"content_ews.js"
],
"all_frames": true,
"run_at": "document_end"
},
{
"matches": [
"https://enrich-training.adams12.org/*",
"https://enrich-test.adams12.org/*",
"https://enrich.adams12.org/*"
],
"js": [
"jquery-2.1.4.js",
"content_enrich.js"
],
"all_frames": false,
"run_at": "document_end"
},
{
"matches": [
"https://student-transportation.tylerapp.com/COAdams12FiveStarS/*"
],
"js": [
"jquery-2.1.4.js",
"content_tylerapp.js"
],
"all_frames": true,
"run_at": "document_end"
}
],
"update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}