Emoji Kitchen Saver

Emoji Kitchen Saver

chrome extension mixed emoji saver

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Emoji Kitchen Saver",
  "version": "0.0.1",
  "description": "chrome extension mixed emoji saver",
  "permissions": [
    "storage"
  ],
  "options_page": "src/pages/options/index.html",
  "background": {
    "service_worker": "src/pages/background/index.js",
    "type": "module"
  },
  "action": {
    "default_popup": "src/pages/popup/index.html",
    "default_icon": "icon-32.png"
  },
  "icons": {
    "16": "icon-16.png",
    "32": "icon-32.png",
    "192": "icon-192.png",
    "512": "icon-512.png"
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*",
        "<all_urls>"
      ],
      "js": [
        "src/pages/content/index.js"
      ],
      "css": [
        "assets/css/contentStyle16949693988.chunk.css"
      ]
    }
  ],
  "devtools_page": "src/pages/devtools/index.html",
  "web_accessible_resources": [
    {
      "resources": [
        "assets/js/*.js",
        "assets/css/*.css",
        "icon-16.png",
        "icon-32.png",
        "icon-192.png",
        "icon-512.png"
      ],
      "matches": [
        "*://*/*"
      ]
    }
  ]
}