Minimal Stack Overflow
A simple way to hide both sidebars from Stack Overflow question`s page
什么是Minimal Stack Overflow?
Minimal Stack Overflow是由Felipe Mendes开发的Chrome扩展程序,该扩展的主要功能是“A simple way to hide both sidebars from Stack Overflow question`s page”。
扩展截图
下载Minimal Stack Overflow扩展crx文件
下载Minimal Stack Overflow扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
扩展基本信息
| 名称 | |
| ID | iacpemcanoendljfmmdcbonjanbmpmha |
| 官方URL | https://chromewebstore.google.com/detail/minimal-stack-overflow/iacpemcanoendljfmmdcbonjanbmpmha |
| 简介 | A simple way to hide both sidebars from Stack Overflow question`s page |
| 文件大小 | 69.99 KB |
| 安装次数 | 67 |
| 当前版本 | 0.0.2 |
| 更新时间 | 2019-02-15 |
| 上架时间 | 2019-02-14 |
| 评分 | 5.00/5 共2次评分 |
| 开发者 | Felipe Mendes |
| 电子邮箱 | [email protected] |
| 付费类型 | free |
| 扩展官网 | https://github.com/felipemendes/minimal-stack-overflow |
| 帮助页面URL | https://github.com/felipemendes/minimal-stack-overflow/issues |
| 支持的语言 | en-US |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Minimal Stack Overflow",
"version": "0.0.2",
"manifest_version": 2,
"description": "A simple way to hide both sidebars from Stack Overflow question`s page",
"homepage_url": "https:\/\/github.com\/felipemendes\/minimal-stack-overflow",
"icons": {
"16": "icons\/icon16.png",
"48": "icons\/icon48.png",
"128": "icons\/icon128.png"
},
"browser_action": {
"default_icon": "icons\/icon19.png",
"default_title": "Minimal Stack Overflow"
},
"content_scripts": [
{
"css": [
"css\/styles.min.css"
],
"js": [
"js\/content.js"
],
"matches": [
"https:\/\/stackoverflow.com\/questions\/*",
"https:\/\/*.stackoverflow.com\/questions\/*"
]
}
]
} | |