Utip for Youtube

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

Vad är Utip for Youtube?

Utip for Youtube är en Chrome-tillägg utvecklad av jorand, och dess huvudfunktion är "Automatically open a popup when you like a youtube video with a utip link in description.".

Tilläggsskärmbilder

screenshot
screenshot
screenshot

Ladda ner Utip for Youtube-förlängningens CRX-fil

Ladda ner Utip for Youtube-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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.                    

Grundläggande Information om Tillägg

Namn Utip for Youtube Utip for Youtube
ID dbncpgcmohkdhaakdachojjgfcgcfnna
Officiell webbadress https://chrome.google.com/webstore/detail/utip-for-youtube/dbncpgcmohkdhaakdachojjgfcgcfnna
Beskrivning Automatically open a popup when you like a youtube video with a utip link in description.
Filstorlek 52.21 KB
Antal Installationer 65
Aktuell Version 0.7.5
Senast Uppdaterad 2019-04-26
Publiceringsdatum 2019-04-26
Betyg 5.00/5 Totalt 3 Betyg
Utvecklare jorand
E-post [email protected]
Betalningssätt free
Tilläggswebbplats https://github.com/Jorand/chrome-utip-for-youtube
Stödda Språk 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"
}