足あと革命

足あと革命

Tinder/Pairs/Omiai/Withの足あと&いいねを完全自動化

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "__MSG_extName__",
  "description": "__MSG_extDescription__",
  "default_locale": "ja",
  "permissions": [
    "storage",
    "alarms",
    "tabs",
    "identity"
  ],
  "host_permissions": [
    "https://tinder.com/*",
    "https://pairs.lv/*",
    "https://www.omiai-jp.com/*",
    "https://with.is/*"
  ],
  "icons": {
    "16": "icons/16.png",
    "32": "icons/32.png",
    "48": "icons/48.png",
    "96": "icons/96.png",
    "128": "icons/128.png"
  },
  "background": {
    "service_worker": "js/background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "https://tinder.com/*",
        "https://pairs.lv/*",
        "https://www.omiai-jp.com/*",
        "https://with.is/*"
      ],
      "css": [
        "css/style.css"
      ],
      "js": [
        "js/content-script.js"
      ]
    }
  ],
  "action": {
    "default_popup": "popup.html",
    "default_title": "__MSG_extName__",
    "default_icon": {
      "16": "icons/16.png",
      "32": "icons/32.png",
      "48": "icons/48.png",
      "96": "icons/96.png",
      "128": "icons/128.png"
    }
  },
  "version": "1.2.1",
  "content_security_policy": {
    "extension_pages": "script-src 'self'; object-src 'self'; connect-src 'self' ws://localhost:9090 http://localhost:5001 https://us-central1-payment-ashiatokakumei.cloudfunctions.net; "
  }
}