Kamino

Kamino

This extension shows a button on Github issue pages that can be used to clone github issues across repositories

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "author": "John Murphy - Gateway Apps, LLC",
  "content_scripts": [
    {
      "matches": [
        "*://github.com/*/*/issues"
      ],
      "exclude_matches": [
        "*://github.com/*/*/issues/*"
      ],
      "js": [
        "./jquery/jquery-3.6.0.min.js",
        "./handlebars.runtime.min-v4.7.7.js",
        "./batch.js",
        "./template.js"
      ],
      "css": [
        "./css/style.css"
      ],
      "run_at": "document_end"
    },
    {
      "matches": [
        "*://github.com/*/*/issues/*"
      ],
      "exclude_matches": [
        "*://github.com/*/*/issues"
      ],
      "js": [
        "./jquery/jquery-3.6.0.min.js",
        "./handlebars.runtime.min-v4.7.7.js",
        "./app.js",
        "./template.js"
      ],
      "css": [
        "./css/style.css"
      ],
      "run_at": "document_end"
    }
  ],
  "background": {
    "service_worker": "background.js"
  },
  "description": "This extension shows a button on Github issue pages that can be used to clone github issues across repositories",
  "icons": {
    "128": "icons/storm-trooper-128.png"
  },
  "manifest_version": 3,
  "name": "Kamino",
  "options_page": "options.html",
  "permissions": [
    "tabs",
    "background",
    "scripting",
    "storage",
    "webNavigation"
  ],
  "host_permissions": [
    "*://github.com/*"
  ],
  "version": "4.0.0",
  "web_accessible_resources": [
    {
      "resources": [
        "icons/*.png",
        "bootstrap/js/bootstrap.min.js",
        "./css/style.css",
        "./css/options.css",
        "jquery/jquery-3.6.0.min.js",
        "handlebars.runtime.min-v4.7.7.js",
        "template.js",
        "app.js",
        "options.html",
        "options.js",
        "background.js"
      ],
      "matches": [
        "*://github.com/*"
      ]
    }
  ]
}