initial commit
This commit is contained in:
31
manifest.json
Normal file
31
manifest.json
Normal file
@ -0,0 +1,31 @@
|
||||
{
|
||||
"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"
|
||||
}
|
||||
|
||||
}
|
Reference in New Issue
Block a user