QuieNet

Stop Ynet's annoying video auto-play

QuieNet क्या है?

QuieNet Eran द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Stop Ynet's annoying video auto-play"।

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

screenshot
screenshot

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

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

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

                        Ynet is a great site, but the auto-playing embedded videos can be extremely annoying. For some reasons, the site designers overlook or ignore the fact that people use tabs these days, and one might open a bunch of tabs before reviewing each one of the pages. When this is done, multiple pages start to play their content, creating a disturbing noise.

QuieNet is a Chrome extension that prevents videos from being automatically played. The extension hooks Ynet pages, and replaces media player with a stub. When the stub is clicked by the user, the original player is restored, and the video is played.

New in version 2.0
===================
* Video autoplay is cleanly prevented, without replacing the video player.
* Autoplay is prevented even if player is not the first one on the page.                    

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

नाम QuieNet QuieNet
ID dalffmmkadmfpfagclclkagdigdjnhae
आधिकारिक URL https://chromewebstore.google.com/detail/quienet/dalffmmkadmfpfagclclkagdigdjnhae
विवरण Stop Ynet's annoying video auto-play
फ़ाइल का आकार 94.15 KB
स्थापना संख्या 97
वर्तमान संस्करण 2.0
अंतिम अपडेट 2014-08-01
प्रकाशन तिथि 2014-08-01
रेटिंग 4.30/5 कुल 10 रेटिंग्स
डेवलपर Eran
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://quienet.codeplex.com/
सहायता पृष्ठ URL https://quienet.codeplex.com/
समर्थित भाषाएँ iw
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "QuieNet",
    "short_name": "QuieNet",
    "description": "Stop Ynet's annoying video auto-play",
    "version": "2.0",
    "icons": {
        "16": "QuieNet16.png",
        "48": "QuieNet48.png",
        "128": "QuieNet128.png"
    },
    "browser_action": {
        "default_icon": "QuieNet48.png",
        "default_popup": "popup.html"
    },
    "permissions": [
        "storage",
        "http:\/\/www.ynet.co.il\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                "http:\/\/www.ynet.co.il\/*"
            ],
            "js": [
                "jquery-2.1.1.js",
                "video_handler.js"
            ],
            "run_at": "document_start",
            "all_frames": true
        },
        {
            "matches": [
                "http:\/\/www.ynet.co.il\/*"
            ],
            "js": [
                "jquery-2.1.1.js",
                "live_handler.js"
            ],
            "run_at": "document_end",
            "all_frames": true
        }
    ]
}