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

Listen To This KGP란 무엇입니까?

Listen To This KGP은(는) https://iashris.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "A chrome extension that substitutes new pages with pictures from KGP and music shared in the public group Listen to this KGP"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot

Listen To This KGP 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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                    

확장 프로그램 기본 정보

이름 Listen To This KGP Listen To This KGP
ID pbigobacphjlfggebincmppkbfbejelm
공식 URL https://chromewebstore.google.com/detail/listen-to-this-kgp/pbigobacphjlfggebincmppkbfbejelm
설명 A chrome extension that substitutes new pages with pictures from KGP and music shared in the public group Listen to this KGP
파일 크기 47.09 KB
설치 횟수 39
현재 버전 0.8
최근 업데이트 2017-08-20
출시 날짜 2017-08-20
평점 5.00/5 총 12 개의 평점
개발자 https://iashris.com
이메일 [email protected]
결제 유형 free
지원되는 언어 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"
            ]
        }
    ]
}