Fliclip Crypto Browser

Fliclip Crypto Browser

Browser Emulator for open NFT websites freely using your browser.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "__MSG_appName__",
  "short_name": "FlipClip",
  "description": "__MSG_appDesc__",
  "author": "Yasmin Seidel (JasminDreasond)",
  "default_locale": "en",
  "version": "0.3.0",
  "manifest_version": 3,
  "offline_enabled": false,
  "homepage_url": "https://github.com/JasminDreasond/FlipClip-Browser",
  "background": {
    "service_worker": "background.js"
  },
  "action": {
    "default_title": "__MSG_appName__"
  },
  "permissions": [
    "contentSettings",
    "background",
    "storage",
    "unlimitedStorage",
    "webRequest",
    "history",
    "contextMenus",
    "scripting"
  ],
  "icons": {
    "16": "icons/icon_16.png",
    "38": "icons/icon_38.png",
    "48": "icons/icon_48.png",
    "128": "icons/icon_128.png"
  },
  "host_permissions": [
    "<all_urls>"
  ],
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "/js/jquery.min.js",
        "/js/contextMenus/browser.js",
        "/js/ud/domains.js",
        "/js/contextMenus/getSelection.js"
      ],
      "all_frames": true,
      "match_about_blank": true
    }
  ]
}