Saner Social Media - Feed Blocker

Block social media distractions and replace them with uplifting quotes to improve your productivity.

Saner Social Media - Feed Blocker là gì?

Saner Social Media - Feed Blocker là một tiện ích mở rộng Chrome được phát triển bởi Tobias Dalhof, và tính năng chính của nó là "Block social media distractions and replace them with uplifting quotes to improve your productivity.".

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

screenshot
screenshot
screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Saner Social Media - Feed Blocker

Tải xuống các tệp mở rộng Saner Social Media - Feed Blocker 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

                        Are you tired of mindlessly scrolling through social media, only to find yourself more stressed and less productive? Look no further. Our extension is here to save the day by blocking those pesky distractions and replacing them with uplifting quotes.

Say goodbye to the constant stream of negativity and hello to improved mental well-being and productivity. No more time-sucking distractions, just a reminder to focus on the good things in life. And don't worry, we've got you covered on all fronts. Our extension works on 11 different social media sites, so you can finally take control of your online experience.

Take a step towards a saner and more positive social media experience. Give our extension a try and see the difference it makes. Your brain will thank you.

Check out the source code for our extension on GitHub at https://github.com/tobiasdalhof/sanersocialmedia                    

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

Tên Saner Social Media - Feed Blocker Saner Social Media - Feed Blocker
ID opnoobcmpioggidgaejfkbopdphbfkkk
URL Chính Thức https://chromewebstore.google.com/detail/saner-social-media-feed-b/opnoobcmpioggidgaejfkbopdphbfkkk
Mô tả Block social media distractions and replace them with uplifting quotes to improve your productivity.
Kích Thước Tệp 624 KB
Số Lần Cài Đặt 232
Phiên Bản Hiện Tại 1.9.1
Cập Nhật Lần Cuối 2024-01-23
Ngày Phát Hành 2022-03-30
Đánh Giá 5.00/5 Tổng số 23 Đánh Giá
Nhà Phát Triển Tobias Dalhof
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/tobiasdalhof/sanersocialmedia
URL Trang Trợ Giúp https://github.com/tobiasdalhof/sanersocialmedia/issues
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Saner Social Media - Feed Blocker",
    "description": "__MSG_manifestDescription__",
    "version": "1.9.1",
    "manifest_version": 3,
    "default_locale": "en",
    "icons": {
        "16": "icon16.png",
        "24": "icon24.png",
        "32": "icon32.png",
        "48": "logo48.png",
        "64": "logo64.png",
        "128": "logo128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.youtube.com\/*",
                "https:\/\/*.x.com\/*",
                "https:\/\/*.twitter.com\/*",
                "https:\/\/*.instagram.com\/*",
                "https:\/\/*.facebook.com\/*",
                "https:\/\/*.tiktok.com\/*",
                "https:\/\/*.pinterest.com\/*",
                "https:\/\/*.pinterest.com.mx\/*",
                "https:\/\/*.pinterest.de\/*",
                "https:\/\/*.pinterest.fr\/*",
                "https:\/\/*.pinterest.ca\/*",
                "https:\/\/*.pinterest.co.uk\/*",
                "https:\/\/*.pinterest.it\/*",
                "https:\/\/*.pinterest.es\/*",
                "https:\/\/*.pinterest.be\/*",
                "https:\/\/*.pinterest.pt\/*",
                "https:\/\/*.pinterest.se\/*",
                "https:\/\/*.pinterest.at\/*",
                "https:\/\/*.linkedin.com\/*",
                "https:\/\/*.twitch.tv\/*",
                "https:\/\/*.reddit.com\/*",
                "https:\/\/*.github.com\/*",
                "https:\/\/news.ycombinator.com\/*"
            ],
            "all_frames": true,
            "run_at": "document_start",
            "js": [
                "content.js"
            ],
            "css": [
                "content.style.css"
            ]
        }
    ],
    "background": {
        "service_worker": "background.js"
    },
    "options_ui": {
        "page": "options\/index.html",
        "open_in_tab": true
    },
    "action": {
        "default_popup": "popup\/index.html"
    },
    "permissions": [
        "storage"
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "options\/index.html"
            ],
            "matches": [
                ""
            ]
        }
    ]
}