JIRA Language Switcher

JIRA Language Switcher

This Chrome Extension make it easily that you change your language setting on JIRA.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "JIRA Language Switcher",
  "version": "1.0.1",
  "description": "This Chrome Extension make it easily that you change your language setting on JIRA.",
  "icons": {
    "16": "images/jira-lang-switcher-logo-16.png",
    "48": "images/jira-lang-switcher-logo-128.png",
    "128": "images/jira-lang-switcher-logo-128.png"
  },
  "browser_action": {
    "default_title": "JIRA Language Switcher",
    "default_icon": "images/jira-lang-switcher-logo-16.png",
    "default_popup": "popup.html"
  },
  "permissions": [
    "tabs",
    "storage",
    "http://*/*",
    "https://*/*"
  ],
  "background": {
    "scripts": [
      "js/jquery-2.2.3.min.js",
      "js/background.js"
    ]
  },
  "options_page": "options.html"
}