One Sound

One sound for all media content

One Sound क्या है?

One Sound all bear द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "One sound for all media content"।

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

screenshot
screenshot

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

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

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

                        Only one audio/video will be played at time, all another audio/video will be paused and a kind of queue will be created.

Problem:
You listen to music, someone send you a funny video on youtube and you open it.
Now you have playing at the same time your music and a funny video.

Solution:
- Return to the tab with your music, pause it
- Again go back to the youtube tab, rewind the video to the beginning
- When the video ends, you need open tab with your music and continue listening to it

Good solution:
Just install this extension and it will do everything for you. How it works:
- When any content (audio or video) start playing, the already playing audio/video will be paused
- When you stop the current audio/video previously paused content continuing to play

So, it means, that a queue of audio/video is formed. And only one content can be played in a one moment of time.

Currently, such providers are supported:
- Youtube
- VKontakte
- Yandex Music
- Sound Cloud
- HTML5 audio / video
- Google Music

PS: write in the comments which sites/providers of audio you would like to have added. 
Also this is only alpha version so I will be really glad if you write about some bugs or features (that you want) :)                    

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

नाम One Sound One Sound
ID dffcenhoengmpiolfggomohhfgnagnmk
आधिकारिक URL https://chrome.google.com/webstore/detail/one-sound/dffcenhoengmpiolfggomohhfgnagnmk
विवरण One sound for all media content
फ़ाइल का आकार 123 KB
स्थापना संख्या 51
वर्तमान संस्करण 1.0.0
अंतिम अपडेट 2017-08-17
प्रकाशन तिथि 2017-08-17
रेटिंग 3.67/5 कुल 3 रेटिंग्स
डेवलपर all bear
भुगतान के प्रकार free
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "__MSG_appName__",
    "version": "1.0.0",
    "manifest_version": 2,
    "description": "__MSG_appDescription__",
    "icons": {
        "16": "images\/icon-16.png",
        "128": "images\/icon-128.png"
    },
    "default_locale": "en",
    "background": {
        "scripts": [
            "scripts\/background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "scripts\/content.js"
            ],
            "run_at": "document_end",
            "all_frames": true
        },
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "scripts\/pre-content.js"
            ],
            "run_at": "document_start",
            "all_frames": true
        }
    ],
    "permissions": [
        "tabs",
        "storage",
        "http:\/\/*\/*",
        "https:\/\/*\/*",
        "notifications"
    ],
    "options_ui": {
        "page": "templates\/options.html",
        "chrome_style": true
    },
    "browser_action": {
        "default_icon": {
            "19": "images\/icon-19.png",
            "38": "images\/icon-38.png"
        },
        "default_title": "One Sound",
        "default_popup": "templates\/chain.html"
    }
}