Not For You

Not For You

An automated confusion system for TikTok

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Not For You",
  "version": "1.0.0",
  "description": "An automated confusion system for TikTok",
  "homepage_url": "http://bengrosser.com/projects/not-for-you/",
  "manifest_version": 2,
  "icons": {
    "16": "nfy-logo-16.png",
    "32": "nfy-logo-32.png",
    "48": "nfy-logo-48.png",
    "64": "nfy-logo-64.png",
    "128": "nfy-logo-128.png",
    "256": "nfy-logo-256.png",
    "512": "nfy-logo-512.png"
  },
  "browser_action": {
    "default_icon": "nfy-logo-128.png",
    "default_popup": "options.html"
  },
  "permissions": [
    "activeTab",
    "storage"
  ],
  "content_scripts": [
    {
      "matches": [
        "https://*.tiktok.com/*"
      ],
      "all_frames": true,
      "run_at": "document_start",
      "js": [
        "jquery.min.js",
        "nfy.js"
      ]
    }
  ]
}