Youtube Studio Bulk Draft Video Submitter

Youtube Studio Bulk Draft Video Submitter

Youtube studio bulk draft video submitter automates the resolution of multiple videos from the draft to the published status, while allowing the user to select the visibility and appropriately mark the videos with "made for kids" flag if needed.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "name": "Youtube Studio Bulk Draft Video Submitter",
  "version": "2.0",
  "description": "Youtube studio bulk draft video submitter automates the submission of  multiple videos without user input",
  "options_ui": {
    "page": "options.html",
    "browser_style": true,
    "open_in_tab": true
  },
  "icons": {
    "128": "icon.png"
  },
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": true
  },
  "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
  "content_scripts": [
    {
      "matches": [
        "http://studio.youtube.com/channel/*",
        "https://studio.youtube.com/channel/*"
      ],
      "run_at": "document_end",
      "css": [
        "css/main.css"
      ],
      "js": [
        "js/jquery-3.5.1.slim.min.js",
        "js/content_script.min.js"
      ],
      "all_frames": false
    }
  ],
  "page_action": {
    "default_icon": {
      "128": "icon.png"
    },
    "default_title": "Youtube studio draft submitter"
  },
  "permissions": [
    "tabs",
    "activeTab",
    "storage",
    "http://studio.youtube.com/*",
    "https://studio.youtube.com/*"
  ]
}