Examine source code of JIRA Template Injector (Autosync Templates)

Inspect and view changes in JIRA Template Injector (Autosync Templates) source codes across current and past versions
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "JIRA Template Injector (Autosync Templates)",
  "author": "BuyItInstalled",
  "short_name": "JTI",
  "version": "1.0.0",
  "description": "The description field of new JIRA issues will automatically be populated with a template relevant to the issue type",
  "icons": {
    "16": "images/JTI-16.png",
    "48": "images/JTI-48.png",
    "64": "images/JTI-64.png",
    "128": "images/JTI-128.png"
  },
  "browser_action": {
    "default_icon": {
      "40": "images/JTI-48.png",
      "48": "images/JTI-48.png",
      "64": "images/JTI-64.png",
      "128": "images/JTI-128.png"
    },
    "default_popup": "html/popup.html"
  },
  "background": {
    "scripts": [
      "lib/jquery/jquery-2.2.3.js",
      "js/utils.js",
      "jti_background.js"
    ],
    "persistent": false
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "lib/jquery/jquery-2.2.3.js",
        "js/utils.js",
        "jti_content.js"
      ],
      "run_at": "document_end"
    }
  ],
  "sandbox": {
    "pages": [
      "html/sandbox.html"
    ]
  },
  "permissions": [
    "storage",
    "tabs",
    "*://*/*.json",
    "https://*.pingstatsnet.com/"
  ]
}