32 lines
729 B
JSON
32 lines
729 B
JSON
{
|
|
"manifest_version": 3,
|
|
"name": "Apple Music Now Playing",
|
|
"version": "1.3.0",
|
|
"description": "Send Apple Music now playing info to a custom endpoint.",
|
|
"permissions": [
|
|
"storage",
|
|
"scripting",
|
|
"activeTab"
|
|
],
|
|
"host_permissions": [
|
|
"https://music.apple.com/*",
|
|
"https://beta.music.apple.com/",
|
|
"https://classical.music.apple.com/*",
|
|
"<all_urls>"
|
|
],
|
|
"options_page": "options.html",
|
|
"content_scripts": [
|
|
{
|
|
"matches": ["https://music.apple.com/*"],
|
|
"js": ["content.js"]
|
|
}
|
|
],
|
|
"icons": {
|
|
"16": "icons/icon16.png",
|
|
"32": "icons/icon32.png",
|
|
"48": "icons/icon48.png",
|
|
"128": "icons/icon128.png"
|
|
}
|
|
|
|
}
|