Printtags

Printtags

Printtags help to copy all tags from platforms like (Redbubble - Teepublic - Etsy) directly from the page with one click

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "name": "Printtags ",
  "version": "1.0.0",
  "description": "chrome extension help to copy all tags from platforms like (Redbubble - Teepublic - Etsy) directly from the page with one click",
  "icons": {
    "16": "./assets/img/16.png",
    "48": "./assets/img/48.png",
    "128": "./assets/img/128.png"
  },
  "web_accessible_resources": [
    "assets/css/globalStyles.css",
    "assets/fonts/*.*"
  ],
  "browser_action": {
    "default_title": "Sirius RTL",
    "default_icon": "./assets/img/128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*.redbubble.com/*"
      ],
      "css": [
        "./assets/css/globalStyles.css"
      ],
      "js": [
        "./scripts/redbubble.js"
      ]
    },
    {
      "matches": [
        "*://*.etsy.com/*"
      ],
      "css": [
        "./assets/css/globalStyles.css"
      ],
      "js": [
        "./scripts/etsy.js"
      ]
    },
    {
      "matches": [
        "*://*.teepublic.com/*"
      ],
      "css": [
        "./assets/css/globalStyles.css"
      ],
      "js": [
        "./scripts/teepublic.js"
      ]
    }
  ]
}