Inspect and view changes in Lyrics for Spotify by Raul S source codes across current and past versions
Premium users can view and search full source code, and see the source code differences
between two versions.
Upgrade to premium
manifest.json
{
"manifest_version": 2,
"name": "__MSG_extensionName__",
"description": "__MSG_extensionDescription__",
"default_locale": "en",
"version": "1.3",
"icons": {
"48": "icons/icon48.png",
"96": "icons/icon96.png"
},
"permissions": [
"activeTab",
"tabs",
"<all_urls>"
],
"content_scripts": [
{
"matches": [
"*://*.spotify.com/lyrics"
],
"js": [
"content.js"
]
}
],
"background": {
"scripts": [
"background.js"
]
},
"browser_action": {
"default_popup": "popup.html"
},
"browser_specific_settings": {
"gecko": {
"id": "{959e8528-98dc-4df7-8ec0-9b565d9a96ea}"
}
}
}