Comment Picker

Comment Picker

Random Comments Picker for Giveaways and Contests.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Comment Picker",
  "description": "Random Comments Picker for Giveaways and Contests.",
  "version": "1.0",
  "manifest_version": 3,
  "background": {
    "service_worker": "background.js",
    "presistent": false
  },
  "externally_connectable": {
    "matches": [
      "http://localhost:8000/*",
      "https://comment-picker.com/*",
      "https://www.comment-picker.com/*"
    ]
  },
  "host_permissions": [
    "https://*.instagram.com/*"
  ],
  "content_scripts": [
    {
      "matches": [
        "http://localhost:8000/*",
        "https://comment-picker.com/*",
        "https://www.comment-picker.com/*"
      ],
      "js": [
        "content-script.js"
      ]
    }
  ],
  "icons": {
    "16": "icon.png",
    "48": "icon.png",
    "128": "icon.png"
  }
}