Music of Minecraft

An extension to randomly play ambient music, such as the music from Minecraft.

Music of Minecraft क्या है?

Music of Minecraft Z Smith द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "An extension to randomly play ambient music, such as the music from Minecraft."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot
screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Music of Minecraft एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        ** NOT ENDORSED BY/AFFILIATED WITH MOJANG OR MICROSOFT **

Select music (from Minecraft or another folder) and have it played randomly in the background as you browse, with random delays to mimic the ambient music of the game.

This extension does NOT distribute any music from Minecraft. You must have Minecraft installed on your computer for it to pull the music from. Alternatively, you can select a folder on your computer and have if play your own music (e.g. if you have purchased and downloaded the Minecraft music separately). Please do not illegally download the music without paying for it.

The whole project is open source, and can be found on Github here: https://github.com/zsmith3/Music-of-Minecraft-Chrome-Extension

Features:
   - Two options for music selection:
       - Minecraft: you select the ".minecraft/assets/" folder on your computer, and the extension pulls all of the music files from the index kept there
       - Folder: you select any folder on your computer, then it (and its subdirectories) are scannned for any audio files
   - Adjustable volume
   - Choose whether to start playing when Chrome opens
   - Choose whether to play in the background when Chrome is closed
   - Click the extension icon to play/pause at any time
   - Random playing:
       - Music is selected randomly from the selection
       - No single track will play twice in a row, but tracks can repeat before the shuffle is completed
       - Before a song is played, it is delayed by a random time interval, to roughly mimic the game                    

एक्सटेंशन की मूल जानकारी

नाम Music of Minecraft Music of Minecraft
ID piidlenoacbeeecjfdkjcgcienfgnkjn
आधिकारिक URL https://chromewebstore.google.com/detail/music-of-minecraft/piidlenoacbeeecjfdkjcgcienfgnkjn
विवरण An extension to randomly play ambient music, such as the music from Minecraft.
फ़ाइल का आकार 630 KB
स्थापना संख्या 6,471
वर्तमान संस्करण 1.0.1
अंतिम अपडेट 2018-09-08
प्रकाशन तिथि 2018-09-08
रेटिंग 4.29/5 कुल 31 रेटिंग्स
डेवलपर Z Smith
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://github.com/zsmith3/Music-of-Minecraft-Chrome-Extension
सहायता पृष्ठ URL https://github.com/zsmith3/Music-of-Minecraft-Chrome-Extension/issues
समर्थित भाषाएँ en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Music of Minecraft",
    "description": "An extension to randomly play ambient music, such as the music from Minecraft.",
    "version": "1.0.1",
    "browser_action": {
        "default_icon": {
            "16": "images\/icons\/icon_16.png",
            "48": "images\/icons\/icon_48.png",
            "128": "images\/icons\/icon_128.png"
        }
    },
    "icons": {
        "16": "images\/icons\/icon_16.png",
        "48": "images\/icons\/icon_48.png",
        "128": "images\/icons\/icon_128.png"
    },
    "permissions": [
        "storage",
        "unlimitedStorage"
    ],
    "options_page": "html\/options.html",
    "background": {
        "scripts": [
            "js\/es6-promise.auto.min.js",
            "js\/utils.js",
            "js\/files.js",
            "js\/music.js",
            "js\/main.js"
        ]
    }
}