SE Block
Block all of that distracting sidebar stuff in the excellent Stack Exchange network.
Was ist SE Block?
SE Block ist eine Chrome-Erweiterung, die von chrisbodhi entwickelt wurde, und ihr Hauptmerkmal ist "Block all of that distracting sidebar stuff in the excellent Stack Exchange network.".
Erweiterungsscreenshots
SE Block-Erweiterungs-CRX-Datei herunterladen
Laden Sie SE Block-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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. Grundlegende Informationen zur Erweiterung
| Name | |
| ID | ffpkepieaocfchmcokenleighplnifjh |
| Offizielle URL | https://chrome.google.com/webstore/detail/se-block/ffpkepieaocfchmcokenleighplnifjh |
| Beschreibung | Block all of that distracting sidebar stuff in the excellent Stack Exchange network. |
| Dateigröße | 11.31 KB |
| Installationsanzahl | 18 |
| Aktuelle Version | 0.0.3 |
| Letztes Update | 2015-06-21 |
| Veröffentlichungsdatum | 2015-06-21 |
| Bewertung | 5.00/5 Insgesamt 1 Bewertungen |
| Entwickler | chrisbodhi |
| Zahlungsart | free |
| Hilfeseite URL | https://github.com/chrisbodhi/se-block |
| Unterstützte Sprachen | 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\/*"
]
} | |