Unlock Saavn

Keep track of saavn easily. Remotely access music player in any tabs.

Unlock Saavnคืออะไร?

Unlock Saavn เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://balajisankar.tech และคุณลักษณะหลักของมันคือ "Keep track of saavn easily. Remotely access music player in any tabs."

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

screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Unlock Saavn

ดาวน์โหลดไฟล์ส่วนขยาย Unlock Saavn ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        Avoid searching for JioSaavn tabs to change songs and to know which song is playing. Just click on the chrome extension and know about the details of the song from any tab.

Some songs just stop at 0:00 and doesn't play further. Ad-blocker is the culprit! And I've solved it for you 🙌

This extension works only when the Saavn track is playing.

Features:

1. Play/pause, forward/prev, repeat, shuffle songs easily by opening the extension from any tab.
2. Song stops at 0:00 (ad-blocker issue resolved).
3. Keep track of saavn easily.
4. Extension blocks the ad displayed in the Jiosaavn.

Disclaimer: This app is in no way connected with JioSaavn. No user data is collected.                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Unlock Saavn Unlock Saavn
ID bgfjknijhlkhpeofdlbognkbfckhpnnm
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/unlock-saavn/bgfjknijhlkhpeofdlbognkbfckhpnnm
คำอธิบาย Keep track of saavn easily. Remotely access music player in any tabs.
ขนาดไฟล์ 44 KB
จำนวนการติดตั้ง 440
เวอร์ชันปัจจุบัน 2.0.0
อัปเดตครั้งล่าสุด 2018-12-04
วันที่เผยแพร่ 2018-12-03
คะแนน 5.00/5 รวมทั้งหมด 10 คะแนน
ผู้พัฒนา https://balajisankar.tech
ประเภทการชำระเงิน free
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Unlock Saavn",
    "version": "2.0.0",
    "manifest_version": 2,
    "description": "Keep track of saavn easily. Remotely access music player in any tabs.",
    "homepage_url": "http:\/\/balajisankar.tech\/",
    "icons": {
        "16": "icons\/music-player.png",
        "48": "icons\/music-player.png",
        "128": "icons\/music-player.png"
    },
    "permissions": [
        "activeTab",
        "tabs",
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "default_locale": "en",
    "background": {
        "scripts": [
            "src\/bg\/background.js"
        ],
        "persistent": true
    },
    "commands": {
        "toggle-feature": {
            "suggested_key": {
                "default": "MediaNextTrack",
                "mac": "MediaNextTrack"
            },
            "description": "Toggle feature ",
            "global": true
        }
    },
    "browser_action": {
        "default_icon": "icons\/music-player.png",
        "default_title": "Saavn",
        "default_popup": "src\/browser_action\/browser_action.html"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/www.jiosaavn.com\/*",
                "https:\/\/www.jiosaavn.com\/*"
            ],
            "run_at": "document_start",
            "css": [
                "src\/inject\/inject.css"
            ]
        }
    ]
}