#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 là gì?

#Bring It Back là một tiện ích mở rộng Chrome được phát triển bởi https://2003kaito.com, và tính năng chính của nó là "This extension allows you to customize the navigation bar at the top of Scratch's website to your preference.".

Tải xuống tệp CRX của tiện ích mở rộng #Bring It Back

Tải xuống các tệp mở rộng #Bring It Back dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên #Bring It Back #Bring It Back
ID emnafibodmpbnaokljinkcaoeffdfhcb
URL Chính Thức https://chromewebstore.google.com/detail/bring-it-back/emnafibodmpbnaokljinkcaoeffdfhcb
Mô tả This extension allows you to customize the navigation bar at the top of Scratch's website to your preference.
Kích Thước Tệp 112 KB
Số Lần Cài Đặt 114
Phiên Bản Hiện Tại 1.3.0
Cập Nhật Lần Cuối 2017-11-13
Ngày Phát Hành 2017-11-12
Đánh Giá 4.10/5 Tổng số 10 Đánh Giá
Nhà Phát Triển https://2003kaito.com
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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"
            ]
        }
    ]
}