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

O que é Listen To This KGP?

Listen To This KGP é uma extensão do Chrome desenvolvida por https://iashris.com, e sua principal característica é "A chrome extension that substitutes new pages with pictures from KGP and music shared in the public group Listen to this KGP".

Capturas de Tela da Extensão

screenshot
screenshot
screenshot

Baixar o arquivo CRX da Extensão Listen To This KGP

Baixe arquivos de extensão Listen To This KGP no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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                    

Informações Básicas da Extensão

Nome Listen To This KGP Listen To This KGP
ID pbigobacphjlfggebincmppkbfbejelm
URL Oficial https://chromewebstore.google.com/detail/listen-to-this-kgp/pbigobacphjlfggebincmppkbfbejelm
Descrição A chrome extension that substitutes new pages with pictures from KGP and music shared in the public group Listen to this KGP
Tamanho do Arquivo 47.09 KB
Contagem de Instalações 39
Versão Atual 0.8
Última Atualização 2017-08-20
Data de Publicação 2017-08-20
Classificação 5.00/5 Total de 12 Avaliações
Desenvolvedor https://iashris.com
Email [email protected]
Tipo de Pagamento free
Idiomas Suportados 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"
            ]
        }
    ]
}