Import Line Stickers to Eagle

Import Line Stickers to Eagle

Import LINE Stickers and Emojis from https://store.line.me/stickershop to Eagle Application

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 3,
  "name": "Import Line Stickers to Eagle",
  "version": "1.0.6",
  "author": "Mr.Manit Treeprapankit",
  "description": "Import LINE Stickers and Emojis from https://store.line.me/stickershop to Eagle",
  "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://store.line.me/stickershop/product/*",
        "https://store.line.me/emojishop/product/*"
      ],
      "run_at": "document_end"
    }
  ],
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "permissions": [
    "tabs",
    "notifications"
  ],
  "action": {
    "default_icon": "icons/icon-32x32.png",
    "default_title": "LINE Stickers to Eagle"
  },
  "browser_specific_settings": {
    "gecko": {
      "id": "[email protected]"
    }
  }
}