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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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"
}