Feed Blocker for LinkedIn

Block the feed on LinkedIn

Feed Blocker for LinkedInคืออะไร?

Feed Blocker for LinkedIn เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Darren Tu และคุณลักษณะหลักของมันคือ "Block the feed on LinkedIn"

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Feed Blocker for LinkedIn

ดาวน์โหลดไฟล์ส่วนขยาย Feed Blocker for LinkedIn ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        Introducing Feed Blocker for LinkedIn.

UPDATE IN VERSION 1.1:
-> Added the feature to block out the "Today's most viewed courses"

FEATURES

-> Block your LinkedIn Feed
-> Block LinkedIn's "Today's News and Views"
-> Block LinkedIn's "Today's most viewed courses"

FREQUENTLY ASKED QUESTIONS:

WHEN I CLICK ON THE TOGGLE, IT DOESN'T BLOCK THE FEED! WHAT'S GOING ON?

LinkedIn frequently releases new code. If it doesn't work, it's probably because LinkedIn just recently updated their code base. If I notice it, I will fix it and push an update to this extension. Feel free to comment within the reviews tab if no update has occurred.

WHY DOES IT REQUIRE MY BROWSING HISTORY?

The browsing history permission is very misleading here. I require to use the Chrome tabs API (https://developer.chrome.com/extensions/tabs). Chrome tabs API has functions to access your browsing history. This extension only uses the onUpdated event (https://developer.chrome.com/extensions/tabs#event-onUpdated) of the Chrome tabs API. This is because LinkedIn works as a single paged application. I need the Chrome tabs api information to indicate when the url in the browser has changed. This is because I would need to remove the 'feed' and the "Today's news" again when a user goes back onto the feed.

Without the tabs api, when you click onto another tab (such as LinkedIn Messaging) and then click back onto LinkedIn Home, the feed and news will reload back onto the page (when it should be removed).

GITHUB: https://github.com/darrentu/Feed-Blocker-for-LinkedIn

DISCLAIMER:

I do not store any of your data. The only data that is stored is kept on your own computer. This is needed for chrome to remember what you selected to hide when you refresh your page.

Feed Blocker for LinkedIn is not affiliated with LinkedIn.                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Feed Blocker for LinkedIn Feed Blocker for LinkedIn
ID eikaafmldiioljlilngpogcepiedpenf
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/feed-blocker-for-linkedin/eikaafmldiioljlilngpogcepiedpenf
คำอธิบาย Block the feed on LinkedIn
ขนาดไฟล์ 48.8 KB
จำนวนการติดตั้ง 3,440
เวอร์ชันปัจจุบัน 1.1.1
อัปเดตครั้งล่าสุด 2020-08-27
วันที่เผยแพร่ 2020-04-30
คะแนน 4.45/5 รวมทั้งหมด 47 คะแนน
ผู้พัฒนา Darren Tu
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/darrentu/Feed-Blocker-for-LinkedIn
URL หน้าช่วยเหลือ https://github.com/darrentu/Feed-Blocker-for-LinkedIn
ภาษาที่รองรับ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Feed Blocker for LinkedIn",
    "version": "1.1.1",
    "description": "Block the feed on LinkedIn",
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "icons": {
        "16": "icons\/icon16.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.linkedin.com\/*"
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "browser_action": {
        "default_popup": "popup.html"
    },
    "permissions": [
        "tabs",
        "storage"
    ]
}