KolayNot

KolayNot

Excel belgerindeki öğrenci notlarını Ankara Üniversitesi Öğrenci Bilgi Sistemine (OBS'ye) otomatik olarak aktarır

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "KolayNot",
  "description": "Excel belgerindeki öğrenci notlarını Ankara Üniversitesi Öğrenci Bilgi Sistemine (OBS'ye) otomatik olarak aktarır",
  "version": "0.0.2",
  "manifest_version": 2,
  "icons": {
    "48": "icons/icon_48.png",
    "128": "icons/icon_128.png"
  },
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "https://obs.ankara.edu.tr/LessonEvaluation/NotGiris"
      ],
      "js": [
        "content.js"
      ],
      "css": [
        "content.css"
      ],
      "icons": {
        "48": "icons/icon_48.png",
        "128": "icons/icon_128.png"
      }
    }
  ],
  "web_accessible_resources": [
    "content.js"
  ]
}