Mokuren for GitHub

Mokuren for GitHub

Open GitHub Issues in the sidebar

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "__MSG_extName__",
  "version": "2.4.6",
  "description": "__MSG_extDesc__",
  "default_locale": "en",
  "icons": {
    "16": "icons/16.png",
    "48": "icons/48.png",
    "128": "icons/128.png"
  },
  "permissions": [
    "tabs",
    "storage",
    "identity",
    "identity.email",
    "declarativeNetRequest"
  ],
  "host_permissions": [
    "https://github.com/*"
  ],
  "declarative_net_request": {
    "rule_resources": [
      {
        "id": "ruleset_1",
        "enabled": true,
        "path": "rules.json"
      }
    ]
  },
  "background": {
    "service_worker": "js/background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "https://github.com/*"
      ],
      "run_at": "document_idle",
      "all_frames": false,
      "js": [
        "js/content-script.js"
      ]
    },
    {
      "matches": [
        "https://github.com/*"
      ],
      "run_at": "document_end",
      "all_frames": true,
      "js": [
        "js/iframe-content-script.js"
      ]
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "assets/images/*.png"
      ],
      "matches": [
        "https://github.com/*"
      ]
    },
    {
      "resources": [
        "auth.html"
      ],
      "matches": [
        "https://github.com/*"
      ]
    }
  ],
  "content_security_policy": {
    "extension_pages": "script-src 'self'; object-src 'self'",
    "sandbox": "sandbox allow-scripts; script-src 'self' 'https://apis.google.com/' 'https://www.gstatic.com/' 'https://*firebaseio.com' 'https://www.googleapis.com' 'https://ajax.googleapis.com' 'https://github.githubassets.com'; object-src' self'"
  },
  "commands": {
    "closeSidebar": {
      "suggested_key": {
        "default": "Ctrl+Shift+S"
      },
      "description": "Close sidebar"
    }
  },
  "omnibox": {
    "keyword": "mo"
  }
}