Newlogy

Newlogy

Clean up and enhance Schoology's interface

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Newlogy",
  "description": "Clean up and enhance Schoology's interface",
  "version": "2.4.5",
  "options_ui": {
    "page": "options/options.html",
    "open_in_tab": true
  },
  "content_scripts": [
    {
      "matches": [
        "https://*.schoology.com/*",
        "https://schoology.com/*"
      ],
      "css": [
        "css/clean.css",
        "css/floating_header.css"
      ],
      "run_at": "document_start"
    },
    {
      "matches": [
        "https://*.schoology.com/*",
        "https://schoology.com/*"
      ],
      "js": [
        "clean.js"
      ]
    },
    {
      "matches": [
        "https://fccps.schoology.com/user/3503469*"
      ],
      "js": [
        "dev.js"
      ],
      "css": [
        "css/dev.css"
      ]
    }
  ],
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "icons": {
    "32": "icons/32.png",
    "64": "icons/64.png",
    "128": "icons/128.png",
    "256": "icons/256.png"
  },
  "permissions": [
    "storage"
  ],
  "web_accessible_resources": [
    "options/options.html",
    "module_bundle_*.js"
  ]
}