Toggle Stackoverflow sidebar
Adds a button to toggle the Stackoverflow sidebar.
什么是Toggle Stackoverflow sidebar?
Toggle Stackoverflow sidebar是由Unknown开发的Chrome扩展程序,该扩展的主要功能是“Adds a button to toggle the Stackoverflow sidebar.”。
扩展截图
下载Toggle Stackoverflow sidebar扩展crx文件
下载Toggle Stackoverflow sidebar扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Hides the distracting sidebar from Stackoverflow pages, centers the main text, and creates a button for revealing the sidebar. 扩展基本信息
| 名称 | |
| ID | jhgooipphocncabpmflocgdmhojmhibi |
| 官方URL | https://chromewebstore.google.com/detail/toggle-stackoverflow-side/jhgooipphocncabpmflocgdmhojmhibi |
| 简介 | Adds a button to toggle the Stackoverflow sidebar. |
| 文件大小 | 107 KB |
| 安装次数 | 60 |
| 当前版本 | 1.2 |
| 更新时间 | 2014-12-23 |
| 上架时间 | 2014-12-22 |
| 评分 | 5.00/5 共9次评分 |
| 开发者 | Unknown |
| 付费类型 | free |
| 支持的语言 | en-US |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Toggle Stackoverflow sidebar",
"manifest_version": 2,
"version": "1.2",
"description": "Adds a button to toggle the Stackoverflow sidebar.",
"page_action": {
"name": "Toggle Sidebar"
},
"icons": {
"128": "icon.png",
"48": "icon.png",
"16": "icon.png"
},
"content_scripts": [
{
"css": [
"jquery-ui.css"
],
"js": [
"jquery.min.js",
"background.js",
"jquery-ui.min.js"
],
"matches": [
"*:\/\/*.stackoverflow.com\/*"
]
}
]
} | |