nitech-moodle-extension

nitech-moodle-extension

名古屋工業大学のmoodleを使いやすくするChrome拡張機能です。情報基盤センターとは無関係で非公式なものであり、また問題が起きても責任は取れません。nitech Create:http://nitech-create.com

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "author": "nitech Create",
  "homepage_url": "https://github.com/nitech-create/nitech-moodle-chrome",
  "name": "nitech-moodle-extension",
  "description": "名古屋工業大学のmoodleを使いやすくするChrome拡張機能です。情報基盤センターとは無関係で非公式なものであり、また問題が起きても責任は取れません。nitech Create:http://nitech-create.com",
  "version": "1.0.7",
  "icons": {
    "32": "./icons/icon.png",
    "48": "./icons/icon.png",
    "128": "./icons/icon.png"
  },
  "options_page": "./options/options.html",
  "browser_action": {
    "default_icon": "./icons/icon.png",
    "default_title": "",
    "default_popup": "./popup/popup.html"
  },
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  },
  "content_scripts": [
    {
      "matches": [
        "https://cms6.ict.nitech.ac.jp/moodle38a/*"
      ],
      "css": [
        "styles.css"
      ],
      "js": [
        "main.js"
      ]
    },
    {
      "matches": [
        "https://cms6.ict.nitech.ac.jp/moodle38a/my/",
        "https://cms6.ict.nitech.ac.jp/moodle38a/my/index.php"
      ],
      "css": [
        "topPageStyle.css"
      ]
    },
    {
      "matches": [
        "https://cms6.ict.nitech.ac.jp/moodle38a/pluginfile.php/*/mod_scorm/content/1/index.html*"
      ],
      "all_frames": true,
      "css": [
        "videoArea.css"
      ]
    }
  ],
  "permissions": [
    "https://cms6.ict.nitech.ac.jp/moodle38a/*",
    "background",
    "storage"
  ]
}