ComOn com!

Show coms in YouTube videos in realtime by retrieving timestamps

ComOn com! क्या है?

ComOn com! https://slals.io द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Show coms in YouTube videos in realtime by retrieving timestamps"।

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

screenshot

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

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

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

                        Show YouTube comments in the video while watching.

It's a prototype, feel free to bring some ideas for this project here :

https://github.com/Slaals/comoncom

How to :

- Install it,
- Watch You Tube videos,
- Enjoy

Issue / Todo :

- Doesn't work in full screen,
- Doesn't have any waiting list, it only shows the first comments it found,
- Only get 100 comments (API limitation).                    

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

नाम ComOn com! ComOn com!
ID nfmkbcjacdnbdnedcbnmecdcedoijpna
आधिकारिक URL https://chromewebstore.google.com/detail/comon-com/nfmkbcjacdnbdnedcbnmecdcedoijpna
विवरण Show coms in YouTube videos in realtime by retrieving timestamps
फ़ाइल का आकार 32.63 KB
स्थापना संख्या 46
वर्तमान संस्करण 1.3.3
अंतिम अपडेट 2017-02-07
प्रकाशन तिथि 2017-02-07
रेटिंग 3.00/5 कुल 2 रेटिंग्स
डेवलपर https://slals.io
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://www.youtube.com/watch?v=S_P2noWHyzo
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "ComOn com!",
    "description": "Show coms in YouTube videos in realtime by retrieving timestamps",
    "version": "1.3.3",
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "browser_action": {
        "default_icon": "comon_on.png",
        "default_title": "Comon"
    },
    "content_security_policy": "script-src 'self' https:\/\/apis.google.com; object-src 'self'",
    "background": {
        "scripts": [
            "eventPage.js"
        ],
        "persistent": false
    },
    "permissions": [
        "tabs",
        "activeTab",
        "https:\/\/www.youtube.com\/watch*",
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.youtube.com\/*"
            ],
            "js": [
                "com.js"
            ],
            "css": [
                "style.css"
            ],
            "run_at": "document_idle"
        }
    ]
}