Brows'ear

A Chrome extension made to find song a breeze!

什麼是Brows'ear?

Brows'ear是由Omar Jbara開發的Chrome擴展程式,該擴展的主要功能是“A Chrome extension made to find song a breeze!”。

擴展截圖

screenshot
screenshot
screenshot
screenshot

下載Brows'ear擴展crx文件

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

擴展使用說明

                        Brows'ear allows to easily find a song that is playing in your current tab! Did you miss the last hit in your favorite stream? You're one shortcut away of discovering new songs in a very conveniant way. Access your last found items to keep an organized list of the songs the extension has matched. Get directly in the extension their Spotify URI, Deezer URL or YouTube video (if any found). 
You can either use only the shortcut version (by default bound to Ctrl/Cmd+Shift+X, but can be rebound in Chrome Extensions mappings page settings) or use the little UI with the big (very very big) record button (you always want to click a big button, right?).
It comes with a MIND BLOWING set of 2 themes!                    

擴展基本資訊

名稱 Brows'ear Brows'ear
ID gmfpfebmgkoplcpceddmhigogakflnak
官方網址 https://chromewebstore.google.com/detail/browsear/gmfpfebmgkoplcpceddmhigogakflnak
簡介 A Chrome extension made to find song a breeze!
檔案大小 503 KB
安裝次數 47
目前版本 1.3.3
更新時間 2021-05-06
上架時間 2019-12-12
評分 4.00/5 共 4 次評分
開發者 Omar Jbara
電子郵箱 [email protected]
付費類型 free
擴展官網 https://github.com/Liinkiing/browsear
支援的語言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Brows'ear",
    "author": "Omar Jbara ",
    "version": "1.3.3",
    "description": "A Chrome extension made to find song a breeze!",
    "icons": {
        "48": "assets\/icon-48-light.png",
        "128": "assets\/icon-128-light.png"
    },
    "web_accessible_resources": [
        "assets\/*",
        "popup\/*"
    ],
    "content_security_policy": "connect-src 'self' https:\/\/*.aha-music.com https:\/\/*.doreso.com https:\/\/*.acrcloud.com https:\/\/*.spotify.com; script-src 'self' 'unsafe-eval'; object-src 'self'",
    "permissions": [
        "activeTab",
        "storage",
        "tabs",
        "tabCapture",
        "https:\/\/*.acrcloud.com",
        "https:\/\/*.spotify.com"
    ],
    "commands": {
        "toggle-recording": {
            "suggested_key": {
                "default": "Ctrl+Shift+X",
                "mac": "Command+Shift+X"
            },
            "description": "Toggle recording a song for recognition"
        }
    },
    "manifest_version": 2,
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "browser_action": {
        "default_title": "Brows'ear",
        "default_icon": "assets\/icon-128-light.png",
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "js": [
                "contentscript.js"
            ],
            "matches": [
                "*:\/\/*\/*"
            ]
        }
    ]
}