Stack Block
Block the annoying parts of Stack Overflow
Co to jest Stack Block?
Stack Block to rozszerzenie Chrome opracowane przez Jeff Cole, a jego główną funkcją jest „Block the annoying parts of Stack Overflow”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Stack Block
Pobierz pliki rozszerzeń Stack Block w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
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.
Podstawowe informacje o rozszerzeniu
Nazwa | Stack Block |
ID | oaimjdjckmmblefojgncilidkkandhbl |
Oficjalny URL | https://chromewebstore.google.com/detail/stack-block/oaimjdjckmmblefojgncilidkkandhbl |
Opis | Block the annoying parts of Stack Overflow |
Rozmiar pliku | 187 KB |
Liczba instalacji | 45 |
Aktualna Wersja | 0.0.7 |
Ostatnia Aktualizacja | 2017-11-30 |
Data Publikacji | 2017-11-30 |
Deweloper | Jeff Cole |
[email protected] | |
Typ Płatności | free |
Strona Rozszerzenia | https://github.com/jeffcole/stack-block |
Obsługiwane Języki | 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 } ] } |