#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 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "This extension allows you to customize the navigation bar at the top of Scratch's website to your preference."।

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में #Bring It Back एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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"
            ]
        }
    ]
}