Stack Block
Block the annoying parts of Stack Overflow
什么是Stack Block?
Stack Block是由Jeff Cole开发的Chrome扩展程序,该扩展的主要功能是“Block the annoying parts of Stack Overflow”。
扩展截图
下载Stack Block扩展crx文件
下载Stack Block扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
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.
扩展基本信息
名称 | Stack Block |
ID | oaimjdjckmmblefojgncilidkkandhbl |
官方URL | https://chromewebstore.google.com/detail/stack-block/oaimjdjckmmblefojgncilidkkandhbl |
简介 | Block the annoying parts of Stack Overflow |
文件大小 | 187 KB |
安装次数 | 45 |
当前版本 | 0.0.7 |
更新时间 | 2017-11-30 |
上架时间 | 2017-11-30 |
开发者 | Jeff Cole |
电子邮箱 | [email protected] |
付费类型 | free |
扩展官网 | https://github.com/jeffcole/stack-block |
支持的语言 | 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 } ] } |