Easily sync your Shazam tracks with a Spotify playlist
Premium users can view and search full source code, and see the source code differences
between two versions.
Upgrade to premium
manifest.json
{
"update_url": "https://clients2.google.com/service/update2/crx",
"key": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAopSL/q/2d97dHxCQ1w26B4EONSEo4CZZYFqu3MlJKA5ifSXkyoNSlkG6afDuNoXmiTWFCAawRgGwuO3yi0QvfeMJpz+M9nXnt8PQsVP10Mb7o3SHIihxIXRMFAJvggvHW4NCuDznJixpo2ixEeCL8LGkS0ZL93MgYtEOuaGPdcBTiAUya3Nr3mdkn+nTHldQvthassiDYZystDTuKwkf0vTZkDCyWC8bfI7xZTxQ6IFcS2WQgUm0ix5hgv+qyOQzOwh26R6BQmZTFj7YiSqhgZsZRebhMcn+hxd8kSegS1ZAcKv/oS63Ej5/IAB5NijrPXR3zivQZ6oIJjr+xMOU9wIDAQAB",
"name": "Shazify",
"version": "0.5.1",
"manifest_version": 2,
"description": "__MSG_appDesc__",
"homepage_url": "http://www.leeroy.me",
"icons": {
"16": "icons/icon16.png",
"48": "icons/icon48.png",
"128": "icons/icon128.png"
},
"default_locale": "en",
"background": {
"scripts": [
"background/background.js"
]
},
"browser_action": {
"default_icon": "icons/icon19.png",
"default_title": "Shazify",
"default_popup": "popup/popup.html"
},
"permissions": [
"tabs",
"identity",
"storage",
"background",
"http://www.shazam.com/*",
"https://www.shazam.com/*",
"https://cdn.shazam.com/*",
"https://api.spotify.com/*",
"https://accounts.spotify.com/*",
"https://api.shazify.ch/*"
],
"content_security_policy": "script-src 'self' https://ssl.google-analytics.com https://fonts.googleapis.com; object-src 'self'",
"web_accessible_resources": [
"contentscripts/img/attention_icon.png"
]
}