#Bring It Back

This extension allows you to customize the navigation bar at the top of Scratch's website to your preference.

#Bring It Back란 무엇입니까?

#Bring It Back은(는) https://2003kaito.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "This extension allows you to customize the navigation bar at the top of Scratch's website to your preference."입니다.

#Bring It Back 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        It is an extension developed to revive the "Discuss" button which disappeared from the navigation bar at the top of Scratch's website.
You can switch display / non-display for each button, and it supports multiple languages.
Also supports sorting of buttons.
You can also use it as a substitute for the "Discuss" button within Scratch's site.

The list of displayable buttons is as follows.
· Create
· Explore
· Discuss
· Signature
· Tips
· About
· Custom URL

2017/11/13 Version 1.3.0
Now supports the display of custom URL.                    

확장 프로그램 기본 정보

이름 #Bring It Back #Bring It Back
ID emnafibodmpbnaokljinkcaoeffdfhcb
공식 URL https://chromewebstore.google.com/detail/bring-it-back/emnafibodmpbnaokljinkcaoeffdfhcb
설명 This extension allows you to customize the navigation bar at the top of Scratch's website to your preference.
파일 크기 112 KB
설치 횟수 114
현재 버전 1.3.0
최근 업데이트 2017-11-13
출시 날짜 2017-11-12
평점 4.10/5 총 10 개의 평점
개발자 https://2003kaito.com
결제 유형 free
지원되는 언어 de,en,es,zh-CN,zh-TW,ja
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "#Bring It Back",
    "version": "1.3.0",
    "description": "__MSG_description__",
    "default_locale": "en",
    "icons": {
        "16": "icon_16.png",
        "48": "icon_48.png",
        "128": "icon_128.png"
    },
    "browser_action": {
        "default_icon": {
            "19": "icon_19.png"
        },
        "default_title": "#Bring It Back"
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "options_ui": {
        "page": "options.html",
        "chrome_style": true
    },
    "permissions": [
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/scratch.mit.edu\/*"
            ],
            "js": [
                "jquery-3.2.1.min.js",
                "script.js"
            ]
        }
    ]
}