Listen To This KGP

A chrome extension that substitutes new pages with pictures from KGP and music shared in the public group Listen to this KGP

Qu'est-ce que Listen To This KGP ?

Listen To This KGP est une extension Chrome développée par https://iashris.com, et sa fonction principale est "A chrome extension that substitutes new pages with pictures from KGP and music shared in the public group Listen to this KGP".

Captures d'Écran de l'Extension

screenshot
screenshot
screenshot

Télécharger le fichier CRX de l'extension Listen To This KGP

Téléchargez les fichiers d'extension Listen To This KGP au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        Miss KGP like I do? Well, this extention lets you have a peek at some of the memories of the campus through the stellar pictures captured by the amazing photographers of the campus. The extension also brings up random music suggestions recommended by KGPians in the Listen to This KGP Facebook group. 

Update 0.3 : Implement save to playlist and reload feature
Update 0.4 : Restrict content script permission to required URLs
Update 0.5 : Create hashing on client side every 5 hours, backend optimizations
Update 0.6 : Not replaced localhost
Update 0.7 : Get all errors fixed
Update 0.8 : Not replaced localhost                    

Informations de Base sur l'Extension

Nom Listen To This KGP Listen To This KGP
ID pbigobacphjlfggebincmppkbfbejelm
URL Officiel https://chromewebstore.google.com/detail/listen-to-this-kgp/pbigobacphjlfggebincmppkbfbejelm
Description A chrome extension that substitutes new pages with pictures from KGP and music shared in the public group Listen to this KGP
Taille du Fichier 47.09 KB
Nombre d'Installations 39
Version Actuelle 0.8
Dernière Mise à Jour 2017-08-20
Date de Publication 2017-08-20
Évaluation 5.00/5 Total 12 Évaluations
Développeur https://iashris.com
Email [email protected]
Type de Paiement free
Langues Prises en Charge en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Listen To This KGP",
    "description": "A chrome extension that substitutes new pages with pictures from KGP and music shared in the public group Listen to this KGP",
    "version": "0.8",
    "incognito": "split",
    "manifest_version": 2,
    "chrome_url_overrides": {
        "newtab": "newpage.html"
    },
    "icons": {
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "browser_action": {
        "default_icon": "icons\/icon48.png"
    },
    "permissions": [
        "storage",
        "http:\/\/fierce-sands-92451.herokuapp.com\/*",
        "http:\/\/localhost:5000\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                "file:\/\/\/*",
                "*:\/\/fierce-sands-92451.herokuapp.com\/*",
                "http:\/\/localhost\/*"
            ],
            "js": [
                "jquery-2.2.4.min.js",
                "script.js"
            ]
        }
    ]
}