#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文件
下载#Bring It Back扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
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 |
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" ] } ] } |