Hummin.io (Beta)

Hummin.io (Beta)

Discover your target audience on Twitter without clicking

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Hummin.io (Beta)",
  "version": "0.1.9.2",
  "description": "Discover your target audience on Twitter without clicking",
  "key": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAtj/j6vUVLoN1bugqx8InY+Dcum6tqlUT7r6PAyDMAU68bBdT3TCfontNAXXbc+q0O8WtPELEqe/MJDy+2Les6eh/weEndFqal6hrWlMTB3dIfXpKtjt6ETsnErbWasEwyNiMYM7uWCHkMrWys0QFHq1G2s8s/cV9dsHPEwp4Wf769piXjB4afYpiqOwY20wOWNruCE0OlEl+IZpYi0NN1LWl9G39s22A/c1lpo1gPK/ny+zNCjw4oT2IRVyOHNEKlzsYN2gTIkE2lFzKhYz/UAHB/jOSO/DpLeP+Fc9JjP5kJQ/qjCr8owtE4gitSZ/TSugshlXdtpFtkpsIlE4ymwIDAQAB",
  "icons": {
    "16": "icons/icon_16.png",
    "32": "icons/icon_32.png",
    "48": "icons/icon_48.png",
    "128": "icons/icon_128.png"
  },
  "background": {
    "service_worker": "background.js"
  },
  "action": {
    "default_title": "hummin.io"
  },
  "host_permissions": [
    "https://twitter.com/*"
  ],
  "permissions": [
    "tabs",
    "activeTab",
    "storage",
    "scripting",
    "webRequest"
  ],
  "content_scripts": [
    {
      "matches": [
        "https://twitter.com/*"
      ],
      "run_at": "document_idle",
      "css": [
        "content.css"
      ],
      "js": [
        "content.js"
      ]
    }
  ]
}