Unofficial Genius Search

Unofficial Genius Search

什麼是Unofficial Genius Search?

Unofficial Genius Search是由Steven Galarza開發的Chrome擴展程式,該擴展的主要功能是“Unofficial Genius Search”。

下載Unofficial Genius Search擴展crx文件

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

擴展使用說明

                        This is an UNOFFICIAL Genius Search browser extension for Chrome that instantly redirects you to a webpage on the official Genius website that contains annotations for the content you are viewing. The extension is basic and only works for music on Youtube and Soundcloud.

Please note that I do not work for Genius or am affiliated with them in any way. I simply created this to make my life easier. I do not collect any data or anything, and if you do not believe me, then check out the code here https://github.com/stevengalarza/UnofficialGeniusSearch                    

擴展基本資訊

名稱 Unofficial Genius Search Unofficial Genius Search
ID ignebclglbamlknbifbdkodjgoegknpe
官方網址 https://chrome.google.com/webstore/detail/unofficial-genius-search/ignebclglbamlknbifbdkodjgoegknpe
簡介 Unofficial Genius Search
檔案大小 24.26 KB
安裝次數 36
目前版本 1.0
更新時間 2014-08-02
上架時間 2014-08-02
評分 3.00/5 共 7 次評分
開發者 Steven Galarza
付費類型 free
支援的語言 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "background": {
        "persistent": false,
        "scripts": [
            "genius.js"
        ]
    },
    "browser_action": {
        "default_icon": "logo.png"
    },
    "description": "Unofficial Genius Search",
    "icons": {
        "128": "logo.png"
    },
    "name": "Unofficial Genius Search",
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.youtube.com\/*",
                "http:\/\/*.youtube.com\/*",
                "https:\/\/*.soundcloud.com\/*",
                "http:\/\/*.soundcloud.com\/*"
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "permissions": [
        "tabs",
        "webNavigation",
        "activeTab",
        "http:\/\/ajax.googleapis.com\/ajax\/services\/search\/*"
    ],
    "version": "1.0",
    "manifest_version": 2
}