#Bring It Back

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

Was ist #Bring It Back?

#Bring It Back ist eine Chrome-Erweiterung, die von https://2003kaito.com entwickelt wurde, und ihr Hauptmerkmal ist "This extension allows you to customize the navigation bar at the top of Scratch's website to your preference.".

#Bring It Back-Erweiterungs-CRX-Datei herunterladen

Laden Sie #Bring It Back-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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.                    

Grundlegende Informationen zur Erweiterung

Name #Bring It Back #Bring It Back
ID emnafibodmpbnaokljinkcaoeffdfhcb
Offizielle URL https://chromewebstore.google.com/detail/bring-it-back/emnafibodmpbnaokljinkcaoeffdfhcb
Beschreibung This extension allows you to customize the navigation bar at the top of Scratch's website to your preference.
Dateigröße 112 KB
Installationsanzahl 114
Aktuelle Version 1.3.0
Letztes Update 2017-11-13
Veröffentlichungsdatum 2017-11-12
Bewertung 4.10/5 Insgesamt 10 Bewertungen
Entwickler https://2003kaito.com
Zahlungsart free
Unterstützte Sprachen 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"
            ]
        }
    ]
}