Import Flaticon to Eagle

Import Flaticon to Eagle

Bulk download icons and sticker pack from flat.com to Eagle Application

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 3,
  "name": "Import Flaticon to Eagle",
  "version": "1.0.5",
  "author": "Mr.Manit Treeprapankit",
  "description": "Bulk download icons and sticker pack from flat.com to Eagle Application",
  "icons": {
    "16": "icons/icon-16x16.png",
    "32": "icons/icon-32x32.png",
    "48": "icons/icon-48x48.png",
    "64": "icons/icon-64x64.png",
    "128": "icons/icon-128x128.png"
  },
  "content_scripts": [
    {
      "js": [
        "content-script.js"
      ],
      "matches": [
        "https://www.flaticon.com/packs/*",
        "https://www.flaticon.com/stickers-pack/*"
      ],
      "run_at": "document_start"
    }
  ],
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "permissions": [
    "tabs",
    "notifications"
  ],
  "action": {
    "default_icon": "icons/icon-32x32.png",
    "default_title": "FlatIcon to Eagle"
  },
  "browser_specific_settings": {
    "gecko": {
      "id": "[email protected]"
    }
  }
}