GM Machine

GM Machine

You want to grow your Twitter / X account? Install the GM Machine!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "GM Machine",
  "author": "@Joun_nft",
  "description": "You want to grow your Twitter / X account? Install the GM Machine!",
  "version": "8.0.0",
  "manifest_version": 3,
  "permissions": [
    "storage",
    "tabs"
  ],
  "host_permissions": [
    "https://*.twitter.com/",
    "https://*.x.com/"
  ],
  "action": {
    "default_popup": "index.html",
    "default_title": "GM Machine"
  },
  "background": {
    "service_worker": "./static/js/background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "https://*.twitter.com/*",
        "https://*.x.com/*"
      ],
      "js": [
        "./static/js/master.js"
      ]
    }
  ],
  "icons": {
    "16": "./img/logo_48.png",
    "48": "./img/logo_48.png",
    "128": "./img/logo_128.png"
  }
}