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
Eメール [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"
}