Utip for Youtube

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

什么是Utip for Youtube?

Utip for Youtube是由jorand开发的Chrome扩展程序,该扩展的主要功能是“Automatically open a popup when you like a youtube video with a utip link in description.”。

扩展截图

screenshot
screenshot
screenshot

下载Utip for Youtube扩展crx文件

下载Utip for Youtube扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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.                    

扩展基本信息

名称 Utip for Youtube Utip for Youtube
ID dbncpgcmohkdhaakdachojjgfcgcfnna
官方URL https://chrome.google.com/webstore/detail/utip-for-youtube/dbncpgcmohkdhaakdachojjgfcgcfnna
简介 Automatically open a popup when you like a youtube video with a utip link in description.
文件大小 52.21 KB
安装次数 65
当前版本 0.7.5
更新时间 2019-04-26
上架时间 2019-04-26
评分 5.00/5 共3次评分
开发者 jorand
电子邮箱 [email protected]
付费类型 free
扩展官网 https://github.com/Jorand/chrome-utip-for-youtube
支持的语言 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"
}