SE Block
Block all of that distracting sidebar stuff in the excellent Stack Exchange network.
SE Blockとは何ですか?
SE Blockはchrisbodhiによって開発されたChromeの拡張機能で、その主な機能は「Block all of that distracting sidebar stuff in the excellent Stack Exchange network.」です。
拡張機能のスクリーンショット
SE Block拡張機能のCRXファイルをダウンロード
SE Block拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
This is a Google Chrome extension that cleans up some of the cruft from the otherwise excellent Stack Exchange pages. The idea for the extension came about as I started my first job as a web developer and, subsequently, came to spend more and more of my day scanning Stack Overflow, Server Fault, Ask Ubuntu, &c. I became increasingly distracted by the sidebar links, which may have had to do with all of the coffee I drink. Rather than just popping open the browser console to individually hide the modules on especially jittery days, I decided to just write an extension to block them all of the time.
拡張機能の基本情報
名前 | |
ID | ffpkepieaocfchmcokenleighplnifjh |
公式URL | https://chrome.google.com/webstore/detail/se-block/ffpkepieaocfchmcokenleighplnifjh |
説明 | Block all of that distracting sidebar stuff in the excellent Stack Exchange network. |
ファイルサイズ | 11.31 KB |
インストール数 | 18 |
現在のバージョン | 0.0.3 |
最終更新日 | 2015-06-21 |
公開日 | 2015-06-21 |
評価 | 5.00/5 合計 1 レビュー |
開発者 | chrisbodhi |
支払い方法 | free |
ヘルプページのURL | https://github.com/chrisbodhi/se-block |
対応言語 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "__MSG_appName__", "version": "0.0.3", "manifest_version": 2, "description": "__MSG_appDescription__", "short_name": "SE Block", "author": "@chrisbodhi", "icons": { "16": "images\/icon-16.png", "128": "images\/icon-128.png" }, "default_locale": "en", "content_scripts": [ { "matches": [ "*:\/\/stackoverflow.com\/*", "*:\/\/*.stackoverflow.com\/*", "*:\/\/stackexchange.com\/*", "*:\/\/*.stackexchange.com\/*", "*:\/\/serverfault.com\/*", "*:\/\/superuser.com\/*", "*:\/\/askubuntu.com\/*", "*:\/\/stackapps.com\/*", "*:\/\/mathoverflow.net\/*" ], "js": [ "scripts\/contentscript.js" ], "run_at": "document_end", "all_frames": false } ], "permissions": [ "tabs", "*:\/\/stackoverflow.com\/*", "*:\/\/*.stackoverflow.com\/*", "*:\/\/stackexchange.com\/*", "*:\/\/*.stackexchange.com\/*", "*:\/\/serverfault.com\/*", "*:\/\/superuser.com\/*", "*:\/\/askubuntu.com\/*", "*:\/\/stackapps.com\/*", "*:\/\/mathoverflow.net\/*" ] } |