You can configure the following settings: - Placeholder artwork URL - Paused timeout (in seconds, minutes, or hours) - Metadata fetch interval (in seconds, minutes, or hours) I also added helping notes to the title of the inputs to make it clearer what each setting does. Also meow meow meow meow meow meow meow meow meow meow meow meow meow meow
43 lines
1.0 KiB
JSON
43 lines
1.0 KiB
JSON
{
|
|
"manifest_version": 3,
|
|
"name": "Apple Music Now Playing",
|
|
"version": "1.4.3",
|
|
"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"
|
|
}
|
|
}
|