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
公式URL 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
}