Toolsy.io | Etsy SEO and Inspiration Tool

Toolsy.io | Etsy SEO and Inspiration Tool

Best Etsy SEO extension! Let's increase your Etsy sales together!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Toolsy.io | Etsy SEO and Inspiration Tool",
  "description": "Best Etsy SEO extension! Let's increase your Etsy sales together!",
  "version": "2.1.11",
  "host_permissions": [
    "*://*.etsy.com/*",
    "*://*.toolsy.io/*"
  ],
  "permissions": [
    "activeTab",
    "tabs"
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "data/*.json",
        "assets/*.svg",
        "assets/icons/*",
        "assets/fonts/font-awesome/fonts/*.*",
        "assets/fonts/poppins/fonts/*.*",
        "assets/img/*"
      ],
      "matches": [
        "http://*/*",
        "https://*/*",
        "file://*/*",
        "https://i.etsystatic.com/*"
      ],
      "use_dynamic_urls": true
    }
  ],
  "icons": {
    "16": "./icon_16.png",
    "32": "./icon_32.png",
    "48": "./icon_48.png",
    "128": "./icon_128.png"
  },
  "options_page": "options.html",
  "background": {
    "service_worker": "./background.js"
  },
  "action": {
    "default_title": "Toolsy Extension",
    "default_icon": "icon_32.png"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*.etsy.com/market/*"
      ],
      "exclude_matches": [
        "*://community.etsy.com/*"
      ],
      "js": [
        "./market.js"
      ],
      "css": [
        "./market.css"
      ],
      "run_at": "document_end"
    },
    {
      "matches": [
        "*://*.etsy.com/c/*"
      ],
      "exclude_matches": [
        "*://community.etsy.com/*"
      ],
      "js": [
        "./category.js"
      ],
      "css": [
        "./category.css"
      ],
      "run_at": "document_end"
    },
    {
      "matches": [
        "*://*.etsy.com/search*",
        "*://*.etsy.com/*/search*"
      ],
      "exclude_matches": [
        "*://community.etsy.com/*"
      ],
      "js": [
        "./search.js"
      ],
      "css": [
        "./search.css"
      ],
      "run_at": "document_end"
    },
    {
      "matches": [
        "*://*.etsy.com/shop/*",
        "*://*.etsy.com/*/shop/*"
      ],
      "exclude_matches": [
        "*://*.etsy.com/shop/*/edit*",
        "*://*.etsy.com/*/shop/*/edit*"
      ],
      "js": [
        "./shop.js"
      ],
      "css": [
        "./shop.css"
      ],
      "run_at": "document_end"
    },
    {
      "matches": [
        "*://etsy.com/listing/*",
        "*://*.etsy.com/listing/*",
        "*://*.etsy.com/*/listing/*"
      ],
      "js": [
        "./listing.js"
      ],
      "css": [
        "./listing.css"
      ],
      "run_at": "document_end"
    },
    {
      "matches": [
        "*://etsy.com/featured/*"
      ],
      "exclude_matches": [
        "*://community.etsy.com/*"
      ],
      "js": [
        "./featured.js"
      ],
      "css": [
        "./featured.css"
      ],
      "run_at": "document_end"
    }
  ]
}