Teknik Services Extender

Teknik Services Extender

Allows easy methods to utilize the Teknik Services.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Teknik Services Extender",
  "version": "1.0.3",
  "author": "uncled1023",
  "description": "Allows easy methods to utilize the Teknik Services.",
  "applications": {
    "gecko": {
      "id": "[email protected]"
    }
  },
  "permissions": [
    "contextMenus",
    "storage",
    "clipboardRead",
    "clipboardWrite",
    "https://api.teknik.io/"
  ],
  "browser_action": {
    "default_icon": {
      "16": "images/favicon-16.png",
      "48": "images/favicon-48.png"
    },
    "default_title": "Teknik Services",
    "default_popup": "views/popup.html"
  },
  "commands": {
    "upload-files": {
      "suggested_key": {
        "default": "Ctrl+Shift+U"
      },
      "description": "Open a prompt for uploading a file."
    }
  },
  "icons": {
    "16": "images/favicon-16.png",
    "48": "images/favicon-48.png"
  },
  "background": {
    "page": "views/background.html",
    "persistent": true
  },
  "options_ui": {
    "page": "views/options.html"
  }
}