SimplyFeed - LinkedIn Feed Filter

Filter out liked and promoted posts from your LinkedIn feed!

SimplyFeed - LinkedIn Feed Filter là gì?

SimplyFeed - LinkedIn Feed Filter là một tiện ích mở rộng Chrome được phát triển bởi mihailthebuilder, và tính năng chính của nó là "Filter out liked and promoted posts from your LinkedIn feed!".

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

screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng SimplyFeed - LinkedIn Feed Filter

Tải xuống các tệp mở rộng SimplyFeed - LinkedIn Feed Filter 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

                        Hi there 👋 I'm Mihail and I'm a web developer based in London UK.

As a heavy LinkedIn user, I hated that I got so many posts in my feed that were just liked by someone in my network (cue all the motivational/outrage posts 😄). I'd have to scroll for minutes until I'd finally be able to find something a friend would publish and would be worth commenting on. So I rolled up my sleeves and made this extension 💪

📝 Features:
- 2 switches for filtering out reactions (e.g. likes, loves, celebrates etc.) and promoted posts
- stats for how many posts were deleted in the current day and in total
- an amazing person behind it all (had to be said!)

🤐 NOT-SO-SECRET TIP - open Chrome Dev Tools (Ctrl+Shift+J) while on LinkedIn and you'll see the posts that are being removed from your feed (see 2nd screenshot).

📖 The extension is open source, view its codebase here: https://github.com/mihailthebuilder/simplyfeed

🔎 FINAL NOTE - there might be some occasions where you don't see any posts loading up in your feed. It's because LinkedIn keeps spamming you with liked posts and the extension is doing its job filtering them out. Just scroll to the bottom and your feed should load with new posts.

Release 0.0.0.3 - fixed bug which let background colour of badge slip to its default.                    

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

Tên SimplyFeed - LinkedIn Feed Filter SimplyFeed - LinkedIn Feed Filter
ID hpjgkdecioodgjhhdoagefbbdlljkpic
URL Chính Thức https://chrome.google.com/webstore/detail/simplyfeed-linkedin-feed/hpjgkdecioodgjhhdoagefbbdlljkpic
Mô tả Filter out liked and promoted posts from your LinkedIn feed!
Kích Thước Tệp 222 KB
Số Lần Cài Đặt 597
Phiên Bản Hiện Tại 0.0.0.3
Cập Nhật Lần Cuối 2021-06-26
Ngày Phát Hành 2021-04-20
Đánh Giá 4.36/5 Tổng số 11 Đánh Giá
Nhà Phát Triển mihailthebuilder
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://www.mihailthebuilder.com
URL Trang Trợ Giúp https://www.linkedin.com/in/mihailmarian/
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "description": "Filter out liked and promoted posts from your LinkedIn feed!",
    "version": "0.0.0.3",
    "name": "SimplyFeed - LinkedIn Feed Filter",
    "browser_specific_settings": {
        "gecko": {
            "id": "[email protected]",
            "strict_min_version": "0.0.0.1"
        }
    },
    "permissions": [
        "webNavigation",
        "storage"
    ],
    "background": {
        "page": "background.html"
    },
    "browser_action": {
        "default_popup": "popup.html",
        "default_icon": {
            "16": "active-16.png",
            "32": "active-32.png",
            "64": "active-64.png",
            "128": "active-128.png"
        }
    },
    "icons": {
        "16": "active-16.png",
        "32": "active-32.png",
        "64": "active-64.png",
        "128": "active-128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.linkedin.com\/*"
            ],
            "js": [
                "contentScript.bundle.js"
            ],
            "css": [
                "content.styles.css"
            ]
        }
    ],
    "web_accessible_resources": [
        "content.styles.css",
        "active-128.png",
        "active-32.png"
    ],
    "manifest_version": 2,
    "content_security_policy": "script-src 'self' 'unsafe-eval' https:\/\/ssl.google-analytics.com; object-src 'self'"
}