mirror of
https://github.com/GoogleChrome/chrome-extensions-samples.git
synced 2026-03-27 13:29:34 +07:00
28 lines
636 B
JSON
28 lines
636 B
JSON
{
|
|
"name": "Custom Cursor Extension",
|
|
"version": "1.0",
|
|
"manifest_version": 3,
|
|
"description": "Adds a custom cursor on developer.chrome.com.",
|
|
"background": {
|
|
"service_worker": "service-worker.js"
|
|
},
|
|
"content_scripts": [
|
|
{
|
|
"matches": ["https://developer.chrome.com/*"],
|
|
"css": ["style.css"],
|
|
"js": ["counter.js"]
|
|
}
|
|
],
|
|
"web_accessible_resources": [
|
|
{
|
|
"resources": ["dino.png", "dino-pointer.png"],
|
|
"matches": ["https://developer.chrome.com/*"],
|
|
"use_dynamic_urls": true
|
|
}
|
|
],
|
|
"permissions": ["storage"],
|
|
"action": {
|
|
"default_title": "Custom Cursor"
|
|
}
|
|
}
|