GitLab Issues JSON Export

GitLab Issues JSON Export

Export GitLab issues in JSON format.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "GitLab Issues JSON Export",
  "version": "0.0.1",
  "manifest_version": 2,
  "description": "Export GitLab issues in JSON format.",
  "permissions": [
    "tabs",
    "storage",
    "https://git8.ahsan.in/*"
  ],
  "icons": {
    "16": "images/icon-16.png",
    "48": "images/icon-48.png",
    "128": "images/icon-128.png"
  },
  "default_locale": "en",
  "background": {
    "scripts": [
      "scripts/background.js"
    ],
    "persistent": false
  },
  "browser_action": {
    "default_icon": {
      "16": "images/hide-16.png",
      "48": "images/hide-48.png",
      "128": "images/hide-128.png"
    },
    "default_title": "GitLab Issues JSON Export",
    "default_popup": "options.html"
  },
  "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'"
}