StackOverflow focus

Remove all unnecessary clutter when looking for help on StackOverflow.

StackOverflow focus là gì?

StackOverflow focus là một tiện ích mở rộng Chrome được phát triển bởi https://eliasruiz.com, và tính năng chính của nó là "Remove all unnecessary clutter when looking for help on StackOverflow.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng StackOverflow focus

Tải xuống các tệp mở rộng StackOverflow focus 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

                        Available on Firefox: https://addons.mozilla.org/en-US/firefox/addon/stackoverflow-focus/

**New**
1.3
This update brings the focus experience to all of the StackExchange platform and not just StackOverflow.

1.2
Flicker removed, now it's much quicker to apply the distraction free experience when opening a StackOverflow page. Special thanks to https://vantezzen.io for this update.

1.1.0
Some minor bus fixed.
Option to remove drop shadow.
Option to customise the background colour.
The plugin now works with all localised versions of StackOverflow.

Make sure to check out my other product, WebBites.io, a new and modern bookmarking tool. With a focus on aesthetics and accessibility. https://webbites.io.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên StackOverflow focus StackOverflow focus
ID gaeipjkcdkpbfdfmakonllgiboaonopp
URL Chính Thức https://chromewebstore.google.com/detail/stackoverflow-focus/gaeipjkcdkpbfdfmakonllgiboaonopp
Mô tả Remove all unnecessary clutter when looking for help on StackOverflow.
Kích Thước Tệp 293 KB
Số Lần Cài Đặt 699
Phiên Bản Hiện Tại 1.3
Cập Nhật Lần Cuối 2021-08-03
Ngày Phát Hành 2020-07-17
Đánh Giá 4.88/5 Tổng số 17 Đánh Giá
Nhà Phát Triển https://eliasruiz.com
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/elrumo/stackOverflow_focus
URL Trang Trợ Giúp https://github.com/elrumo/stackOverflow_focus
Ngôn Ngữ Được Hỗ Trợ en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "StackOverflow focus",
    "version": "1.3",
    "icons": {
        "128": "icon.png"
    },
    "description": "Remove all unnecessary clutter when looking for help on StackOverflow.",
    "content_scripts": [
        {
            "js": [
                "content.js"
            ],
            "css": [
                "content.css"
            ],
            "matches": [
                "https:\/\/stackoverflow.com\/questions\/*",
                "https:\/\/superuser.com\/questions\/*",
                "https:\/\/serverfault.com\/questions\/*",
                "https:\/\/askubuntu.com\/questions\/*",
                "https:\/\/askubuntu.com\/questions\/*",
                "https:\/\/ja.stackexchange.com\/questions\/*",
                "https:\/\/*.stackexchange.com\/questions\/*"
            ],
            "run_at": "document_start"
        }
    ],
    "permissions": [
        "activeTab",
        "storage"
    ],
    "browser_action": {
        "default_name": "StackOverflow Focus",
        "default_icon": "icon.png",
        "default_popup": "popup.html"
    }
}