TSU GPA Simulator

TSU GPA Simulator

extension-ი დაგეხმარებათ მოახდინოთ სიმულაციები თქვენს GPA-ზე და საშუალო ქულაზე, ამისათვის გადადით თქვენს სასწავლო ბარათზე

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "TSU GPA Simulator",
  "short_name": "TSU GPA Simulator",
  "description": "extension-ი დაგეხმარებათ მოახდინოთ სიმულაციები თქვენს GPA-ზე და საშუალო ქულაზე, ამისათვის გადადით თქვენს სასწავლო ბარათზე",
  "version": "1.0",
  "author": "ბესო ბანცაძე",
  "icons": {
    "16": "icon16.png",
    "19": "icon19.png",
    "38": "icon38.png",
    "48": "icon48.png",
    "128": "icon128.png"
  },
  "page_action": {
    "default_icon": "icon48.png"
  },
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "permissions": [
    "activeTab",
    "tabs",
    "http://sms.tsu.ge/sms/Students/StudBarati.aspx"
  ],
  "content_scripts": [
    {
      "matches": [
        "*://sms.tsu.ge/sms/Students/StudBarati*"
      ],
      "js": [
        "jquery-1.11.2.js",
        "content.js"
      ],
      "run_at": "document_end"
    }
  ]
}