browser-extensions-playground
    Preparing search index...
    • Parameters

      • Optionaloptions: { version?: string; version_name?: string }

      Returns {
          action: { default_popup: string; default_title: string };
          background: { service_worker: string; type: "module" };
          content_scripts: {
              js: string[];
              matches: readonly [
                  "https://example.com/*",
                  "https://chatgpt.com/*",
                  "https://chat.openai.com/*",
                  "https://claude.ai/*",
                  "https://console.anthropic.com/*",
                  "https://github.com/settings/copilot/*",
              ];
              run_at: "document_idle";
          }[];
          description: string;
          host_permissions: string[];
          manifest_version: 3;
          name: string;
          permissions: string[];
          version: string;
          version_name?: string;
      }