Lyreka Song Lyrics

With one click you can find the lyrics for songs playing on YouTube, Pandora and Spotify.

Τι είναι το Lyreka Song Lyrics;

Το Lyreka Song Lyrics είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον http://lyreka.com, και η κύρια λειτουργία του είναι "With one click you can find the lyrics for songs playing on YouTube, Pandora and Spotify.".

Στιγμιότυπα Επέκτασης

screenshot
screenshot
screenshot
screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης Lyreka Song Lyrics

Λήψη αρχείων επέκτασης Lyreka Song Lyrics σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        Lyreka Song Lyrics extension for chrome automatically find lyrics to songs that are being played on YouTube, Spotify and Pandora. Once you are listening to music on one of these websites the Lyreka extension icon will turn green to let you know when the lyrics to the song is found. 

With a simple click on the green Lyreka icon, a new browser tab will open and display song lyrics at Lyreka.com. There is no interruption in the song that is being played and nothing intrusive on your music player page. Now you will be able to discover the meanings behind song lyrics at Lyreka.com while listening to songs on your favorite music websites.

Note: Lyreka is in beta and sometimes we don't find the exact match. You could hover over the green icon to get the song title that was found. We are currently working to get better at matching songs and we appreciate your feedback.

Thanks for trying our extension and we hope you find it useful.                    

Βασικές Πληροφορίες Επέκτασης

Όνομα Lyreka Song Lyrics Lyreka Song Lyrics
ID kopkjepbjibcakflbldeijldfnnflapi
Επίσημο URL https://chrome.google.com/webstore/detail/lyreka-song-lyrics/kopkjepbjibcakflbldeijldfnnflapi
Περιγραφή With one click you can find the lyrics for songs playing on YouTube, Pandora and Spotify.
Μέγεθος Αρχείου 25.57 KB
Αριθμός Εγκαταστάσεων 228
Τρέχουσα Έκδοση 1.0.2
Τελευταία Ενημέρωση 2016-01-14
Ημερομηνία Δημοσίευσης 2016-01-14
Αξιολόγηση 3.00/5 Συνολικά 6 Αξιολογήσεις
Προγραμματιστής http://lyreka.com
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης http://www.lyreka.com/
Διεύθυνση URL της Σελίδας Βοήθειας https://www.lyreka.com/contact-us/
Υποστηριζόμενες Γλώσσες en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Lyreka Song Lyrics",
    "short_name": "Lyreka Lyrics",
    "description": "With one click you can find the lyrics for songs playing on YouTube, Pandora and Spotify.",
    "version": "1.0.2",
    "icons": {
        "16": "icons\/icon_16.png",
        "32": "icons\/icon_32.png",
        "38": "icons\/icon_38.png",
        "64": "icons\/icon_64.png",
        "128": "icons\/icon_128.png",
        "320": "icons\/icon_320.png"
    },
    "browser_action": {
        "default_icon": "icons\/icon_off.png",
        "default_title": "Get Song Lyrics at Lyreka.com"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/play.spotify.com\/*",
                "https:\/\/www.youtube.com\/*"
            ],
            "js": [
                "checker.js"
            ],
            "run_at": "document_idle"
        },
        {
            "matches": [
                "http:\/\/www.pandora.com\/*"
            ],
            "js": [
                "checker_pandora.js"
            ],
            "run_at": "document_idle"
        }
    ],
    "permissions": [
        "alarms",
        "tabs",
        "activeTab",
        "http:\/\/www.lyreka.com\/api\/*"
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    }
}