FreeMyTube

This extension adds your sub feed to the front page of Youtube.com. Relevant content is back.

FreeMyTube란 무엇입니까?

FreeMyTube은(는) bigolideveloper에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "This extension adds your sub feed to the front page of Youtube.com. Relevant content is back."입니다.

확장 프로그램 스크린샷

screenshot

FreeMyTube 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        To install, simply add to chrome, then sign in to your youtube account by selecting the extension icon at the top right of the browser.
 
Please notify any issues at: https://github.com/olieydt/freemytubesource                    

확장 프로그램 기본 정보

이름 FreeMyTube FreeMyTube
ID midpnfppailgfifdgjiddedghmhmanjo
공식 URL https://chromewebstore.google.com/detail/freemytube/midpnfppailgfifdgjiddedghmhmanjo
설명 This extension adds your sub feed to the front page of Youtube.com. Relevant content is back.
파일 크기 232 KB
설치 횟수 12
현재 버전 0.1.12
최근 업데이트 2018-06-29
출시 날짜 2018-06-29
평점 4.11/5 총 9 개의 평점
개발자 bigolideveloper
결제 유형 free
지원되는 언어 en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "FreeMyTube",
    "short_name": "FreeMyTube",
    "version": "0.1.12",
    "manifest_version": 2,
    "description": "This extension adds your sub feed to the front page of Youtube.com. Relevant content is back.",
    "key": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEApnR8nOUaQaa+07t+mBp7OaBcL7rdm4mk6oTctSjLh+rkElCWX1VXxEpKJwzYoJIhi\/a+mmu6SIHwFiyoRKyBNTFKnsfsUvZ9NyhCcdefCrHcfqRW568uO03oglzMnIaCn4mi2jDd2wuDfIc26bTB\/LbNppC8g75+N0oujUWFg2Fp4T1UhEcIaX5m8WlQ16H6c0L7\/V1ArAAEVeQM+uJjq2MKt+Wat+iusJ2NzvFePZww8GJbu3Upry2QSGivNw5aKRF3uILymnd5OIQqfAX+y5Kw5cXeAmJz1J2ZEGA2i4ILQxnimHx57CKEbXEJSulXb08p4kcy42vyCZbmJcAIHQIDAQAB",
    "icons": {
        "16": "logo_16.png",
        "32": "logo_32.png",
        "128": "logo_128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.youtube.com\/*"
            ],
            "js": [
                "jquery.js",
                "inject.js"
            ],
            "run_at": "document_start"
        }
    ],
    "web_accessible_resources": [
        "logo_128.png"
    ],
    "background": {
        "scripts": [
            "jquery.js",
            "background.js"
        ],
        "persistent": false
    },
    "browser_action": {
        "default_popup": "popup.html"
    },
    "oauth2": {
        "client_id": "875028662733-31i21vruia3cj18lrcg8or7cap59vod6.apps.googleusercontent.com",
        "scopes": [
            "https:\/\/www.googleapis.com\/auth\/youtube",
            "https:\/\/www.googleapis.com\/auth\/youtube.force-ssl",
            "https:\/\/www.googleapis.com\/auth\/youtube.readonly",
            "https:\/\/www.googleapis.com\/auth\/youtubepartner"
        ]
    },
    "content_security_policy": "script-src 'self' https:\/\/apis.google.com\/; object-src 'self'",
    "permissions": [
        "identity",
        "https:\/\/accounts.google.com\/*"
    ]
}