Uvoice

Uvoice

登録して、カンタンな設定をするだけで、毎月自動でポイントが貯まる♪ 時間がないアナタにピッタリのポイ活&お小遣い稼ぎ『Uvoice(ユーボイス)』 【Uvoiceとは?】 アンケート回答や、行動データの提供でポイントが貰える「ポイ活サービス」です。…

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Uvoice",
  "version": "1.0.11",
  "background": {
    "service_worker": "background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "https://monitor.u-voice.net/*"
      ],
      "js": [
        "content.js"
      ],
      "run_at": "document_start"
    }
  ],
  "icons": {
    "16": "./icons/icon16.png",
    "48": "./icons/icon48.png",
    "128": "./icons/icon128.png"
  },
  "action": {
    "default_icon": "./icons/icon16.png",
    "default_title": "Uvoice",
    "default_popup": "./dist/index.html"
  },
  "description": "",
  "permissions": [
    "storage",
    "scripting",
    "webRequest",
    "webNavigation",
    "tabs"
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "/dist/*",
        "/dist/setting/index.html",
        "/dist/newEnq/index.html"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "host_permissions": [
    "<all_urls>"
  ]
}