Utip for Youtube

Automatically open a popup when you like a youtube video with a utip link in description.

Was ist Utip for Youtube?

Utip for Youtube ist eine Chrome-Erweiterung, die von jorand entwickelt wurde, und ihr Hauptmerkmal ist "Automatically open a popup when you like a youtube video with a utip link in description.".

Erweiterungsscreenshots

screenshot
screenshot
screenshot

Utip for Youtube-Erweiterungs-CRX-Datei herunterladen

Laden Sie Utip 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

                        Automatically display a easily visible button under the youtube video if a utip link is in the description and can also open the utip link when you hit the like button of the video.

♥ Made with love by a subscriber !

New features :
- Possibility to choose to activate the display of the popup click on the thumbs up
- Now support old YouTube layout
- Compatible with Iridium extension
- Fix bug

Tell me if you have any issues or ideas for improvements.                    

Grundlegende Informationen zur Erweiterung

Name Utip for Youtube Utip for Youtube
ID dbncpgcmohkdhaakdachojjgfcgcfnna
Offizielle URL https://chrome.google.com/webstore/detail/utip-for-youtube/dbncpgcmohkdhaakdachojjgfcgcfnna
Beschreibung Automatically open a popup when you like a youtube video with a utip link in description.
Dateigröße 52.21 KB
Installationsanzahl 65
Aktuelle Version 0.7.5
Letztes Update 2019-04-26
Veröffentlichungsdatum 2019-04-26
Bewertung 5.00/5 Insgesamt 3 Bewertungen
Entwickler jorand
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://github.com/Jorand/chrome-utip-for-youtube
Unterstützte Sprachen en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Utip for Youtube",
    "version": "0.7.5",
    "description": "Automatically open a popup when you like a youtube video with a utip link in description.",
    "icons": {
        "128": "icon-128.png"
    },
    "options_ui": {
        "page": "options.html",
        "chrome_style": true
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/www.youtube.com\/*"
            ],
            "css": [
                "content.css"
            ],
            "js": [
                "jquery.min.js",
                "content.js"
            ]
        }
    ],
    "permissions": [
        "tabs",
        "storage"
    ],
    "author": "https:\/\/github.com\/Jorand"
}