Tags Generator

Tags Generator

This extension provides quick access to your Tags Generator presets.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Tags Generator",
  "description": "This extension provides quick access to your Tags Generator presets.",
  "version": "1.2",
  "externally_connectable": {
    "matches": [
      "*://tagsgenerator.com/*",
      "*://glaring-torch-783.firebaseapp.com/*"
    ]
  },
  "icons": {
    "19": "images/icon_19.png",
    "38": "images/icon_38.png",
    "128": "images/icon_128.png"
  },
  "browser_action": {
    "default_icon": {
      "19": "images/icon_19.png",
      "38": "images/icon_38.png",
      "128": "images/icon_128.png"
    },
    "default_title": "Tags Generator",
    "default_popup": "popup.html"
  },
  "background": {
    "scripts": [
      "lib/firebase.min.js",
      "background.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "*://tagsgenerator.com/*",
        "*://glaring-torch-783.firebaseapp.com/*"
      ],
      "js": [
        "auth.js"
      ]
    }
  ],
  "permissions": [
    "clipboardWrite",
    "storage"
  ],
  "homepage_url": "http://tagsgenerator.com",
  "content_security_policy": "script-src 'self' https://cdn.firebase.com https://*.firebaseio.com; object-src 'self'"
}