AI Script Writer & Video to Text for TikTok

AI Script Writer & Video to Text for TikTok

Get the video to text, use AI to rewrite the current tiktok video script.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "__MSG_name__",
  "description": "__MSG_description__",
  "manifest_version": 3,
  "version": "2.0.7",
  "default_locale": "en",
  "action": {
    "default_icon": "icon/128.png",
    "default_title": "__MSG_name__",
    "default_popup": "popup/index.html"
  },
  "background": {
    "service_worker": "background/index.js"
  },
  "content_scripts": [
    {
      "matches": [
        "https://www.tiktok.com/*",
        "https://tiktok.com/*"
      ],
      "css": [
        "content-script/index.css"
      ],
      "js": [
        "content-script/index.js"
      ],
      "run_at": "document_idle"
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "assets/*",
        "content-script/inject.js"
      ],
      "matches": [
        "https://www.tiktok.com/*",
        "https://tiktok.com/*"
      ]
    }
  ],
  "icons": {
    "16": "icon/128.png",
    "32": "icon/128.png",
    "48": "icon/128.png",
    "128": "icon/128.png",
    "300": "icon/128.png",
    "500": "icon/128.png"
  },
  "permissions": [
    "storage"
  ]
}