mirror of
https://github.com/GoogleChrome/chrome-extensions-samples.git
synced 2026-03-26 13:19:49 +07:00
12 lines
262 B
JSON
12 lines
262 B
JSON
{
|
|
"name": "Page Redder",
|
|
"action": {},
|
|
"manifest_version": 3,
|
|
"version": "0.1",
|
|
"description": "Turns the page red when you click the icon",
|
|
"permissions": ["activeTab", "scripting"],
|
|
"background": {
|
|
"service_worker": "service-worker.js"
|
|
}
|
|
}
|