43 lines
1.0 KiB
JSON
43 lines
1.0 KiB
JSON
{
|
|
"manifest_version": 3,
|
|
"name": "Apple Music Now Playing",
|
|
"version": "1.4.0",
|
|
"description": "Easily display your currently playing Apple Music track on your website with this extension.",
|
|
"permissions": [
|
|
"storage",
|
|
"scripting",
|
|
"activeTab"
|
|
],
|
|
"host_permissions": [
|
|
"https://music.apple.com/*",
|
|
"https://beta.music.apple.com/*",
|
|
"https://classical.music.apple.com/*"
|
|
],
|
|
"options_page": "options.html",
|
|
"content_scripts": [
|
|
{
|
|
"matches": [
|
|
"https://music.apple.com/*",
|
|
"https://beta.music.apple.com/*",
|
|
"https://classical.music.apple.com/*"
|
|
],
|
|
"js": ["content.js"]
|
|
}
|
|
],
|
|
"icons": {
|
|
"16": "icons/icon16.png",
|
|
"32": "icons/icon32.png",
|
|
"48": "icons/icon48.png",
|
|
"128": "icons/icon128.png"
|
|
},
|
|
"action": {
|
|
"default_icon": {
|
|
"16": "icons/icon16.png",
|
|
"32": "icons/icon32.png",
|
|
"48": "icons/icon48.png",
|
|
"128": "icons/icon128.png"
|
|
},
|
|
"default_title": "Apple Music Now Playing"
|
|
}
|
|
}
|