Examine source code of Folder Manager for Google Docs - Smart Document Organizer & Workspace

Inspect and view changes in Folder Manager for Google Docs - Smart Document Organizer & Workspace source codes across current and past versions
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Folder Manager for Google Docs - Smart Document Organizer & Workspace",
  "version": "0.1",
  "description": "Organize Google Docs with custom folders. Create, manage, and sort documents effortlessly with our folder management system",
  "permissions": [
    "storage"
  ],
  "host_permissions": [
    "https://docs.google.com/*"
  ],
  "background": {
    "service_worker": "dist/background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "https://docs.google.com/*"
      ],
      "js": [
        "dist/content.js"
      ],
      "css": [
        "dist/content.css"
      ]
    }
  ],
  "icons": {
    "16": "dist/icons/icon16.png",
    "32": "dist/icons/icon32.png",
    "48": "dist/icons/icon48.png",
    "128": "dist/icons/icon128.png"
  },
  "action": {
    "default_icon": {
      "16": "dist/icons/icon16.png",
      "48": "dist/icons/icon48.png"
    }
  }
}