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 |
| 官方網址 | 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\/*"
]
}
]
} | |