Distraction free for Linkedin™
Hide distractions on Linkedin™ when you need to focus.
Distraction free for Linkedin™ क्या है?
Distraction free for Linkedin™ Matt Thurmond (Digital Detox NYC) द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Hide distractions on Linkedin™ when you need to focus."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Distraction free for Linkedin™ एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
This extension hides potential distractions on LinkedIn™, including the newsfeed, suggested news, ads, and suggested people to follow. This lets you get in, get out, and get it done. This extension is free and opensource. It is is not affiliated with or produced by LinkedIn™. I've gotten a lot of value from LinkedIn™ in the past, and hope this extension will help you use it even more effectively. View the code on github: https://github.com/mthurmond/distraction-free-for-linkedin --> Try my other two extensions to remove distractions. Both are free & open source: - Hide My Email for Gmail™: https://chrome.google.com/webstore/detail/gmail-inbox-hider/koobmglbcddgeoopgphanmhjppfaehaa?hl=en&authuser=0 - Slack Hider: https://chrome.google.com/webstore/detail/slack-hider/ojfkenmmieminleikclgocedgpggeecp?hl=en&authuser=0
एक्सटेंशन की मूल जानकारी
नाम | Distraction free for Linkedin™ |
ID | kigfnbfbpfpgphbocdkmeablbgdbpfke |
आधिकारिक URL | https://chromewebstore.google.com/detail/distraction-free-for-link/kigfnbfbpfpgphbocdkmeablbgdbpfke |
विवरण | Hide distractions on Linkedin™ when you need to focus. |
फ़ाइल का आकार | 42.38 KB |
स्थापना संख्या | 277 |
वर्तमान संस्करण | 3.1 |
अंतिम अपडेट | 2023-06-24 |
प्रकाशन तिथि | 2021-11-14 |
रेटिंग | 4.63/5 कुल 8 रेटिंग्स |
डेवलपर | Matt Thurmond (Digital Detox NYC) |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
एक्सटेंशन वेबसाइट | https://github.com/mthurmond/distraction-free-for-linkedin |
सहायता पृष्ठ URL | https://github.com/mthurmond/distraction-free-for-linkedin/issues |
समर्थित भाषाएँ | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Distraction free for Linkedin\u2122", "version": "3.1", "description": "Hide distractions on Linkedin\u2122 when you need to focus.", "manifest_version": 3, "action": { "default_popup": "popup\/popup.html" }, "permissions": [], "icons": { "16": "icons\/16.png", "32": "icons\/32.png", "48": "icons\/48.png", "128": "icons\/128.png" }, "content_scripts": [ { "matches": [ "https:\/\/www.linkedin.com\/*" ], "run_at": "document_start", "js": [ "hider\/hider.js" ] } ], "web_accessible_resources": [ { "resources": [ "hider\/hider-main.css", "hider\/hider-switch.css", "hider\/hider-newsfeed.css", "hider\/hider-network.css", "hider\/hider-jobs.css", "hider\/favicon-no-messages.ico" ], "matches": [ "https:\/\/www.linkedin.com\/*" ] } ] } |