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文件

下載Listen To This KGP擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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
官方網址 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"
            ]
        }
    ]
}