Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add manifest.json and add install instructions #58

Merged
merged 2 commits into from
Mar 14, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 7 additions & 1 deletion protected-audience/samples/devtools-extension/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,16 @@

## Description

This sample code shows how a Chrome DevTools extension for Protected Audience could be created.
This sample code shows how a Chrome DevTools extension for Protected Audience could be created. The sample code collects the events and organizes them in separate tables for different auctions.

This is not an officially supported Google product.

See the following files:

- [All code samples](https://github.com/GoogleChromeLabs/trust-safety-demo/tree/main/protected-audience/samples/devtools-extension/src)
- [`devtools.js`](https://github.com/GoogleChromeLabs/trust-safety-demo/tree/main/protected-audience/samples/devtools-extension/src/devtools.js)
- [`service-worker.js`](https://github.com/GoogleChromeLabs/trust-safety-demo/tree/main/protected-audience/samples/devtools-extension/src/service-worker.js)

## Instructions

Download the files in the code sample's `/src` folder and [load the unpacked files](https://developer.chrome.com/docs/extensions/get-started/tutorial/hello-world#load-unpacked)
12 changes: 12 additions & 0 deletions protected-audience/samples/devtools-extension/src/manifest.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
{
"name": "Devtools - Protected Audience debugger extension demo",
"description": "Summarizes Protected Audience debugging events.",
"version": "1.0",
"manifest_version": 3,
"minimum_chrome_version": "123.0.6274.0",
"devtools_page": "devtools.html",
"permissions": ["debugger"],
"background": {
"service_worker": "service-worker.js"
}
}
Loading