Instagram Autopilot

Instagram Autopilot

Control Instagram with your camera. Show your face to scroll, smile to like and make a sad face to hide posts.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Instagram Autopilot",
  "version": "1.2",
  "description": "Control Instagram with your camera. Show your face to scroll, smile to like and make a sad face to hide posts.",
  "browser_action": {
    "default_popup": "popup/popup.html"
  },
  "permissions": [
    "storage"
  ],
  "content_scripts": [
    {
      "matches": [
        "https://www.instagram.com/"
      ],
      "css": [
        "styles/ball-clip-rotate.css",
        "styles/moretoggles.min.css",
        "styles/main.css"
      ],
      "js": [
        "scripts/jquery-3.3.1.min.js",
        "scripts/ExpressionManager.js",
        "scripts/face-api.js",
        "scripts/faceDetectionControls.js",
        "scripts/content.js"
      ]
    }
  ],
  "web_accessible_resources": [
    "models/face_expression_model-shard1",
    "models/face_expression_model-weights_manifest.json",
    "models/ssd_mobilenetv1_model-shard1",
    "models/ssd_mobilenetv1_model-shard2",
    "models/ssd_mobilenetv1_model-weights_manifest.json"
  ],
  "icons": {
    "16": "icon-16.png",
    "32": "icon-32.png",
    "48": "icon-48.png",
    "128": "icon-128.png"
  }
}