mirror of
https://github.com/GoogleChrome/chrome-extensions-samples.git
synced 2026-03-27 13:29:34 +07:00
* Add sample for using tabCapture in offscreen document. * Add recording item to tabCapture demo. Adds an icon which indicates if recording is currently in progress. * Addressed a number of pieces of feedback. * Apply suggestions from code review Co-authored-by: amysteamdev <37001393+AmySteam@users.noreply.github.com> * Add step to pin extension. * Add comments. --------- Co-authored-by: amysteamdev <37001393+AmySteam@users.noreply.github.com>
15 lines
363 B
JSON
15 lines
363 B
JSON
{
|
|
"name": "Tab Capture - Recorder",
|
|
"description": "Records the current tab in an offscreen document.",
|
|
"version": "1",
|
|
"manifest_version": 3,
|
|
"minimum_chrome_version": "116",
|
|
"action": {
|
|
"default_icon": "icons/not-recording.png"
|
|
},
|
|
"background": {
|
|
"service_worker": "service-worker.js"
|
|
},
|
|
"permissions": ["tabCapture", "offscreen"]
|
|
}
|