SMG music display
An extension for SMG to show music of browser music players
What is SMG music display?
SMG music display is a Chrome extension developed by smgmusicdisplay, and its main feature is "An extension for SMG to show music of browser music players".
Extension Screenshots
Download SMG music display Extension CRX File
Download SMG music display extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
Click the icon to see what music is playing in your tabs, supports a multitude of music players, among others, YouTube, SoundCloud and Last.fm. For more information, visit the site https://smgmusicdisplay.com
Extension Basic Information
Name | SMG music display |
ID | onebnnoonaadbbdoanmpehnfmhdolmgh |
Official URL | https://chromewebstore.google.com/detail/smg-music-display/onebnnoonaadbbdoanmpehnfmhdolmgh |
Description | An extension for SMG to show music of browser music players |
File Size | 311 KB |
Installation Count | 2,752 |
Current Version | 1.60 |
Last Updated | 2023-02-05 |
Publish Date | 2020-06-24 |
Rating | 3.50/5 Total 10 Ratings |
Developer | smgmusicdisplay |
[email protected] | |
Payment Type | free |
Extension Website | https://smgmusicdisplay.com/ |
Help Page URL | https://twitter.com/@smgmusicdisplay |
Supported Languages | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "SMG music display", "description": "An extension for SMG to show music of browser music players", "version": "1.60", "browser_action": { "default_icon": "resources\/icon-60.png", "default_popup": "src\/groovemarklet.html" }, "background": { "scripts": [ "dist\/main.js" ] }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "lib\/jquery.min.js", "lib\/smg-plugin-common\/dist\/smg_web.js", "src\/foreground.js" ], "run_at": "document_idle" } ], "permissions": [ "tabs", "http:\/\/*\/*", "https:\/\/*\/*", "notifications" ] } |