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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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
공식 URL 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": [
                "*:\/\/*\/*"
            ]
        }
    ]
}