U Comment for Youtube™
Watch youtube vides and see comments occur as you watch
Was ist U Comment for Youtube™?
U Comment for Youtube™ ist eine Chrome-Erweiterung, die von gornall.jason entwickelt wurde, und ihr Hauptmerkmal ist "Watch youtube vides and see comments occur as you watch".
Erweiterungsscreenshots
U Comment for Youtube™-Erweiterungs-CRX-Datei herunterladen
Laden Sie U Comment for Youtube™-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
Grundlegende Informationen zur Erweiterung
| Name | |
| ID | jkflkkodhkllkfpgocafmggflhhpleal |
| Offizielle URL | https://chrome.google.com/webstore/detail/u-comment-for-youtube/jkflkkodhkllkfpgocafmggflhhpleal |
| Beschreibung | Watch youtube vides and see comments occur as you watch |
| Dateigröße | 43.7 KB |
| Installationsanzahl | 161 |
| Aktuelle Version | 1.3.0 |
| Letztes Update | 2015-09-21 |
| Veröffentlichungsdatum | 2015-09-21 |
| Bewertung | 2.92/5 Insgesamt 13 Bewertungen |
| Entwickler | gornall.jason |
| Zahlungsart | free |
| Unterstützte Sprachen | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "U Comment for Youtube\u2122",
"version": "1.3.0",
"manifest_version": 2,
"description": "Watch youtube vides and see comments occur as you watch",
"browser_action": {
"default_icon": "icon.png",
"default_popup": "popup.html"
},
"icons": {
"128": "icon.png",
"48": "icon.png",
"16": "icon.png"
},
"permissions": [
"http:\/\/*\/",
"https:\/\/*\/",
"tabs"
],
"background": {
"scripts": [
"jquery.min.js",
"ajaxer.js"
]
},
"content_scripts": [
{
"matches": [
"http:\/\/www.youtube.com\/*",
"https:\/\/www.youtube.com\/*"
],
"css": [
"basic.css",
"animate.css"
],
"js": [
"jquery.min.js",
"teacup.js",
"async.min.js",
"background.js"
],
"run_at": "document_end"
}
],
"content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'"
} | |