Stack Block
Block the annoying parts of Stack Overflow
Was ist Stack Block?
Stack Block ist eine Chrome-Erweiterung, die von Jeff Cole entwickelt wurde, und ihr Hauptmerkmal ist "Block the annoying parts of Stack Overflow".
Erweiterungsscreenshots
Stack Block-Erweiterungs-CRX-Datei herunterladen
Laden Sie Stack 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
Sometimes, you just want to read technical questions and answers, and not be distracted by whether or not Darth Vader truly renounced the dark side in the moments before his death. This extension blocks the Hot Network Questions, Careers, Hire Me, and other sections on Stack Overflow and Stack Exchange, so you can get back to work.
Grundlegende Informationen zur Erweiterung
Name | Stack Block |
ID | oaimjdjckmmblefojgncilidkkandhbl |
Offizielle URL | https://chromewebstore.google.com/detail/stack-block/oaimjdjckmmblefojgncilidkkandhbl |
Beschreibung | Block the annoying parts of Stack Overflow |
Dateigröße | 187 KB |
Installationsanzahl | 45 |
Aktuelle Version | 0.0.7 |
Letztes Update | 2017-11-30 |
Veröffentlichungsdatum | 2017-11-30 |
Entwickler | Jeff Cole |
[email protected] | |
Zahlungsart | free |
Erweiterungswebsite | https://github.com/jeffcole/stack-block |
Unterstützte Sprachen | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "__MSG_appName__", "version": "0.0.7", "manifest_version": 2, "description": "__MSG_appDescription__", "icons": { "16": "images\/icon-16.png", "19": "images\/icon-19.png", "38": "images\/icon-38.png", "128": "images\/icon-128.png" }, "default_locale": "en", "background": { "scripts": [ "scripts\/background.js" ] }, "permissions": [ "*:\/\/serverfault.com\/*", "*:\/\/stackoverflow.com\/*", "*:\/\/*.stackexchange.com\/*", "*:\/\/superuser.com\/*" ], "page_action": { "default_icon": { "16": "images\/icon-16.png", "19": "images\/icon-19.png", "38": "images\/icon-38.png", "128": "images\/icon-128.png" }, "default_title": "Stack Block", "default_popup": "popup.html" }, "content_scripts": [ { "matches": [ "*:\/\/serverfault.com\/*", "*:\/\/stackoverflow.com\/*", "*:\/\/*.stackexchange.com\/*", "*:\/\/superuser.com\/*" ], "js": [ "bower_components\/jquery\/dist\/jquery.js", "scripts\/content-script.js" ], "run_at": "document_end", "all_frames": false } ] } |