Brows'ear

A Chrome extension made to find song a breeze!

Brows'earคืออะไร?

Brows'ear เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Omar Jbara และคุณลักษณะหลักของมันคือ "A Chrome extension made to find song a breeze!"

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Brows'ear

ดาวน์โหลดไฟล์ส่วนขยาย 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
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": [
                "*:\/\/*\/*"
            ]
        }
    ]
}