Songlink
Share music with Songlink.
Songlink क्या है?
Songlink Antoine Guillou द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Share music with Songlink."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Songlink एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
Share any song or album across any streaming platform. This extension adds a button to Chrome which will automatically open the Songlink for any song or album from Spotify, Apple Music, YouTube Music and many more. This extension uses the website and services of Songlink (https://song.link/).
एक्सटेंशन की मूल जानकारी
नाम | Songlink |
ID | njnlopjiecpncchdmeeknhggbggolalc |
आधिकारिक URL | https://chromewebstore.google.com/detail/songlink/njnlopjiecpncchdmeeknhggbggolalc |
विवरण | Share music with Songlink. |
फ़ाइल का आकार | 73.92 KB |
स्थापना संख्या | 154 |
वर्तमान संस्करण | 1.6 |
अंतिम अपडेट | 2022-11-18 |
प्रकाशन तिथि | 2019-10-07 |
रेटिंग | 4.00/5 कुल 7 रेटिंग्स |
डेवलपर | Antoine Guillou |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
एक्सटेंशन वेबसाइट | https://songlink.glitch.me |
समर्थित भाषाएँ | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Songlink", "version": "1.6", "description": "Share music with Songlink. ", "author": "@starfennec", "homepage_url": "https:\/\/songlink.glitch.me\/", "background": { "scripts": [ "script.js" ], "persistent": false }, "content_scripts": [ { "matches": [ "https:\/\/*.song.link\/*", "*:\/\/itunes.apple.com\/*", "*:\/\/music.apple.com\/*", "*:\/\/*.itun.es\/*", "*:\/\/*.spotify.com\/*", "*:\/\/*.youtube.com\/*", "*:\/\/*.youtu.be\/*", "*:\/\/*.deezer.com\/*", "*:\/\/*.tidal.com\/*", "*:\/\/*.napster.com\/*", "*:\/\/*.soundcloud.com\/*", "*:\/\/music.amazon.com\/*", "*:\/\/*.amazon.com\/*", "*:\/\/music.yandex.com\/*", "*:\/\/music.yandex.ru\/*", "*:\/\/*.spinrilla.com\/mixtapes\/*", "*:\/\/*.spinrilla.com\/songs\/*", "*:\/\/*.pandora.com\/*" ], "js": [ "messages.js" ] }, { "matches": [ "*:\/\/*.youtube.com\/*", "*:\/\/*.youtu.be\/*" ], "js": [ "youtubeId.js" ] } ], "page_action": { "default_icon": { "16": "icons\/icon16.png", "20": "icons\/icon20.png", "40": "icons\/icon40.png", "44": "icons\/icon44.png", "48": "icons\/icon48.png", "50": "icons\/icon50.png", "128": "icons\/icon128.png", "150": "icons\/icon150.png", "176": "icons\/icon176.png" }, "default_title": "Songlink" }, "icons": { "16": "icons\/icon16.png", "20": "icons\/icon20.png", "40": "icons\/icon40.png", "44": "icons\/icon44.png", "48": "icons\/icon48.png", "50": "icons\/icon50.png", "128": "icons\/icon128.png", "150": "icons\/icon150.png", "176": "icons\/icon176.png" }, "options_ui": { "page": "options.html", "open_in_tab": false }, "permissions": [ "activeTab", "clipboardWrite", "contextMenus", "storage", "tabs" ] } |