Search and Watch

Let you search on Youtube while a video is playing.

Was ist Search and Watch?

Search and Watch ist eine Chrome-Erweiterung, die von natkongg2 entwickelt wurde, und ihr Hauptmerkmal ist "Let you search on Youtube while a video is playing.".

Erweiterungsscreenshots

screenshot
screenshot
screenshot
screenshot
screenshot

Search and Watch-Erweiterungs-CRX-Datei herunterladen

Laden Sie Search and Watch-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

                        This chrome extension is a mobile-like YouTube application. If you search or just change page on YouTube, the video you're watching will be at the bottom to let you do both at the same time.                    

Grundlegende Informationen zur Erweiterung

Name Search and Watch Search and Watch
ID ljnmhiabegceemcenbabphfggdgmeoic
Offizielle URL https://chrome.google.com/webstore/detail/search-and-watch/ljnmhiabegceemcenbabphfggdgmeoic
Beschreibung Let you search on Youtube while a video is playing.
Dateigröße 122 KB
Installationsanzahl 34
Aktuelle Version 1.0
Letztes Update 2016-03-05
Veröffentlichungsdatum 2016-03-05
Bewertung 5.00/5 Insgesamt 1 Bewertungen
Entwickler natkongg2
Zahlungsart free
Unterstützte Sprachen en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Search and Watch",
    "short_name": "SNW",
    "version": "1.0",
    "manifest_version": 2,
    "description": "Let you search on Youtube while a video is playing.",
    "icons": {
        "16": "SNWIcon16.png",
        "48": "SNWIcon48.png",
        "128": "SNWIcon128.png"
    },
    "permissions": [
        "tabs",
        "https:\/\/www.youtube.com\/*",
        "storage"
    ],
    "browser_action": {
        "default_icon": "SNWIcon16.png",
        "default_popup": "popup.html",
        "default_title": "Activate\/Desactivate the minimized watching on Youtube."
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.youtube.com\/*"
            ],
            "js": [
                "jquery-2.1.3.min.js",
                "SNWJS.js"
            ],
            "css": [
                "SNWCSS.css"
            ]
        }
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "web_accessible_resources": [
        "remove.png",
        "goto.png"
    ]
}