NSzx Music Player

Gathers all the links in a webpage and opens a music player with the songs (.mp3, .ogg, .flac, .m4a, etc.).

NSzx Music Playerคืออะไร?

NSzx Music Player เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://nszx.fr และคุณลักษณะหลักของมันคือ "Gathers all the links in a webpage and opens a music player with the songs (.mp3, .ogg, .flac, .m4a, etc.)."

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

screenshot
screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย NSzx Music Player

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

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

                        This extension is a client-side music player. It gathers all the links in a webpage and opens a media player with the musics (.mp3, .ogg, .flac, .m4a, etc.). 

It works great with open directories. If you want to find open directories with musics, head this way : https://www.reddit.com/r/opendirectories
or use the integrated search box.

More about me: https://nszx.fr                    

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

ชื่อ NSzx Music Player NSzx Music Player
ID iinlmmcaihpbbpcgmfppbempfbiahmna
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/nszx-music-player/iinlmmcaihpbbpcgmfppbempfbiahmna
คำอธิบาย Gathers all the links in a webpage and opens a music player with the songs (.mp3, .ogg, .flac, .m4a, etc.).
ขนาดไฟล์ 4.43 MB
จำนวนการติดตั้ง 1,373
เวอร์ชันปัจจุบัน 1.1.2
อัปเดตครั้งล่าสุด 2022-12-24
วันที่เผยแพร่ 2020-06-08
คะแนน 4.29/5 รวมทั้งหมด 17 คะแนน
ผู้พัฒนา https://nszx.fr
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/NSzx/nszx-music-player
URL หน้าช่วยเหลือ https://nszx.fr/#contact
ภาษาที่รองรับ id,ms,de,en,en-GB,en-US,fil,fr,sw,nl,no,vi,tr,ca,da,et,es,es-419,hr,it,lv,lt,hu,pl,pt-BR,pt-PT,ro,sk,sl,fi,sv,cs,el,sr,bg,ru,uk,iw,fa,mr,hi,bn,gu,ta,te,kn-IN,ml,th,am-ET,ar,zh-CN,zh-TW,ja,ko
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "__MSG_extension_name__",
    "author": "[email protected]",
    "default_locale": "en",
    "icons": {
        "128": "images\/NSzxMusicPlayer128.png",
        "48": "images\/icon48.png",
        "32": "images\/icon32.png",
        "16": "images\/icon16.png"
    },
    "version": "1.1.2",
    "description": "__MSG_extension_description__",
    "permissions": [
        "activeTab",
        "contextMenus",
        "storage",
        "https:\/\/nszx.fr\/"
    ],
    "background": {
        "scripts": [
            "js\/listener.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "js\/get_playlist.js"
            ]
        }
    ],
    "browser_action": {
        "default_icon": {
            "128": "images\/NSzxMusicPlayer128.png",
            "48": "images\/icon48.png",
            "32": "images\/icon32.png",
            "16": "images\/icon16.png"
        },
        "default_title": "__MSG_extension_name__",
        "default_popup": "popup.html"
    },
    "content_security_policy": "script-src 'self' https:\/\/www.google-analytics.com; object-src 'self'",
    "commands": {
        "prev": {
            "suggested_key": {
                "default": "Ctrl+Shift+6"
            },
            "global": true,
            "description": "Play previous track"
        },
        "playPause": {
            "suggested_key": {
                "default": "Ctrl+Shift+7"
            },
            "global": true,
            "description": "Toggle play\/pause"
        },
        "next": {
            "suggested_key": {
                "default": "Ctrl+Shift+8"
            },
            "global": true,
            "description": "Play next track"
        },
        "switchPlaylist": {
            "suggested_key": {
                "default": "Ctrl+Shift+9"
            },
            "global": true,
            "description": "Play next playlist"
        },
        "ff10": {
            "global": true,
            "description": "Fast forward 10s"
        },
        "ff60": {
            "global": true,
            "description": "Fast forward 60s"
        },
        "ff180": {
            "global": true,
            "description": "Fast forward 3m"
        },
        "fb10": {
            "global": true,
            "description": "Fast backward 10s"
        },
        "fb60": {
            "global": true,
            "description": "Fast backward 60s"
        },
        "fb180": {
            "global": true,
            "description": "Fast backward 3m"
        }
    }
}