Lyrics Fetcher

View your song lyrics on almost any music website online.

Lyrics Fetcher क्या है?

Lyrics Fetcher helpfulwebtech द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "View your song lyrics on almost any music website online."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Lyrics Fetcher एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        Do you enjoy listening to music online?  With our extension you can sing along with your favorite songs by displaying the lyrics line by line as it plays.

Using our extension is simple!  Simply find your favorite song on one of our supported music services and click the icon in the top right corner of your web browser.  If the lyrics are found, they will instantly show for the current song that is playing.

It is so simple and easy to use.  Don't be left in the dark with song lyrics you can't understand.  Join the fun and start singing along today!

PLEASE REFRESH THE PLAYER TAB AFTER INSTALLING THIS EXTENSION                    

एक्सटेंशन की मूल जानकारी

नाम Lyrics Fetcher Lyrics Fetcher
ID phnnoaooookpaffnminadcajmghibbbc
आधिकारिक URL https://chromewebstore.google.com/detail/lyrics-fetcher/phnnoaooookpaffnminadcajmghibbbc
विवरण View your song lyrics on almost any music website online.
फ़ाइल का आकार 93.47 KB
स्थापना संख्या 13,830
वर्तमान संस्करण 1.2.1
अंतिम अपडेट 2022-05-27
प्रकाशन तिथि 2020-03-18
रेटिंग 3.56/5 कुल 330 रेटिंग्स
डेवलपर helpfulwebtech
ईमेल [email protected]
भुगतान के प्रकार free
समर्थित भाषाएँ en-US
manifest.json
{
    "background": {
        "scripts": [
            ".\/services\/dependencies\/jquery.min.js",
            ".\/services\/background.js"
        ]
    },
    "commands": {
        "_execute_page_action": {
            "suggested_key": {
                "default": "Alt+Shift+L",
                "mac": "Alt+Shift+L",
                "windows": "Alt+Shift+L"
            }
        }
    },
    "content_scripts": [
        {
            "js": [
                ".\/services\/dependencies\/jquery.min.js",
                ".\/services\/launcher.js"
            ],
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "run_at": "document_end"
        }
    ],
    "content_security_policy": "script-src 'self' https:\/\/ssl.google-analytics.com; object-src 'self'",
    "description": "View your song lyrics on almost any music website online.",
    "icons": {
        "128": ".\/images\/icon128.png",
        "16": ".\/images\/icon16.png",
        "48": ".\/images\/icon48.png"
    },
    "key": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEApjWTF6kpwxluaxhRigeEGjCy8235aiB0JOcm+euEgjiN2mpt2hNQWR19Qm7DVeKAxRGJROA1g77JOh0eyLPDUhswMpmiFtivgWXFjA+mg6DGRpvllaL+RjO3GBZn4\/jQbrkEY0e8O\/GCNWk2lMtOnkM8\/WCFHXfp8C9tXpuv6sCVqXjqgqdwe6lPnlSJmFpDzC\/PTUitW36DcMoQCEIKdeD4IxcCMG9cCLU3ZBBt\/thbj2pnQMUZmqcZcNXSUccSZD4ZuEeoQ\/dnSSojjepZEEBraJ7bp1Gb7G\/cv9ij3dYwzX\/E+2xWW3cDfXxfOieu9YKzOdoUcL6pkQkK3JYykwIDAQAB",
    "manifest_version": 2,
    "name": "Lyrics Fetcher",
    "options_ui": {
        "chrome_style": true,
        "page": ".\/gui\/options\/options.html"
    },
    "page_action": {
        "default_icon": ".\/images\/icon16.png",
        "default_popup": ".\/gui\/popup\/popup.html",
        "default_title": "Get this song's lyrics"
    },
    "permissions": [
        "tabs",
        "storage",
        "unlimitedStorage",
        "http:\/\/*\/",
        "https:\/\/*\/",
        "webRequest"
    ],
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "version": "1.2.1",
    "web_accessible_resources": [
        "site_modules\/*",
        "lyrics_providers\/*"
    ]
}