ComOn com!

Show coms in YouTube videos in realtime by retrieving timestamps

Qu'est-ce que ComOn com! ?

ComOn com! est une extension Chrome développée par https://slals.io, et sa fonction principale est "Show coms in YouTube videos in realtime by retrieving timestamps".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension ComOn com!

Téléchargez les fichiers d'extension ComOn com! au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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).                    

Informations de Base sur l'Extension

Nom ComOn com! ComOn com!
ID nfmkbcjacdnbdnedcbnmecdcedoijpna
URL Officiel https://chromewebstore.google.com/detail/comon-com/nfmkbcjacdnbdnedcbnmecdcedoijpna
Description Show coms in YouTube videos in realtime by retrieving timestamps
Taille du Fichier 32.63 KB
Nombre d'Installations 46
Version Actuelle 1.3.3
Dernière Mise à Jour 2017-02-07
Date de Publication 2017-02-07
Évaluation 3.00/5 Total 2 Évaluations
Développeur https://slals.io
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://www.youtube.com/watch?v=S_P2noWHyzo
Langues Prises en Charge 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"
        }
    ]
}