SOFOCUS
Helps you focus when you use stack overflow. NOT ASSOCIATED WITH STACK OVERFLOW IN ANY WAY.
SOFOCUS là gì?
SOFOCUS là một tiện ích mở rộng Chrome được phát triển bởi Azimuth Apps, và tính năng chính của nó là "Helps you focus when you use stack overflow. NOT ASSOCIATED WITH STACK OVERFLOW IN ANY WAY.".
Tải xuống tệp CRX của tiện ích mở rộng SOFOCUS
Tải xuống các tệp mở rộng SOFOCUS dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
SOFOCUS is a way to clear out the visual noise often experienced when visting stack overflow. Many times I find myself googling a programming question only to find myself on a page about "My girlfriend cannot stop farting at social events - what should I do?" a few clicks later. This is largely due to the massive list of questions to the right which distract my attention. I can't control myself so, of course, I made an extension to do it for me. It's pretty hacky but it works.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | |
ID | jbolnfjpoapedfklembmebhjadcfhohp |
URL Chính Thức | https://chrome.google.com/webstore/detail/sofocus/jbolnfjpoapedfklembmebhjadcfhohp |
Mô tả | Helps you focus when you use stack overflow. NOT ASSOCIATED WITH STACK OVERFLOW IN ANY WAY. |
Kích Thước Tệp | 217 KB |
Số Lần Cài Đặt | 48 |
Phiên Bản Hiện Tại | 0.0.1 |
Cập Nhật Lần Cuối | 2018-08-09 |
Ngày Phát Hành | 2018-08-09 |
Nhà Phát Triển | Azimuth Apps |
Loại Thanh Toán | free |
Ngôn Ngữ Được Hỗ Trợ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "SOFOCUS", "version": "0.0.1", "manifest_version": 2, "description": "Helps you focus when you use stack overflow. NOT ASSOCIATED WITH STACK OVERFLOW IN ANY WAY.", "homepage_url": "http:\/\/extensionizr.com", "icons": { "16": "icons\/icon16.png", "48": "icons\/icon48.png", "128": "icons\/icon128.png" }, "default_locale": "en", "background": { "scripts": [ "src\/bg\/background.js" ], "persistent": true }, "page_action": { "default_icon": "icons\/icon19.png", "default_title": "page action demo", "default_popup": "src\/page_action\/page_action.html" }, "permissions": [ "https:\/\/stackoverflow.com\/*" ], "content_scripts": [ { "matches": [ "https:\/\/stackoverflow.com\/*" ], "css": [ "src\/inject\/inject.css" ] }, { "matches": [ "https:\/\/stackoverflow.com\/*" ], "js": [ "js\/jquery\/jquery.js", "src\/inject\/inject.js" ] } ] } |