Unofficial Genius Search

Unofficial Genius Search

Unofficial Genius Search là gì?

Unofficial Genius Search là một tiện ích mở rộng Chrome được phát triển bởi Steven Galarza, và tính năng chính của nó là "Unofficial Genius Search".

Tải xuống tệp CRX của tiện ích mở rộng Unofficial Genius Search

Tải xuống các tệp mở rộng Unofficial Genius Search dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Unofficial Genius Search Unofficial Genius Search
ID ignebclglbamlknbifbdkodjgoegknpe
URL Chính Thức https://chrome.google.com/webstore/detail/unofficial-genius-search/ignebclglbamlknbifbdkodjgoegknpe
Mô tả Unofficial Genius Search
Kích Thước Tệp 24.26 KB
Số Lần Cài Đặt 36
Phiên Bản Hiện Tại 1.0
Cập Nhật Lần Cuối 2014-08-02
Ngày Phát Hành 2014-08-02
Đánh Giá 3.00/5 Tổng số 7 Đánh Giá
Nhà Phát Triển Steven Galarza
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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
}