LinkedIn Extension
This extension lights up with a new notification count whenever you have new activity waiting for you at LinkedIn.
LinkedIn Extension क्या है?
LinkedIn Extension LinkedIn द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "This extension lights up with a new notification count whenever you have new activity waiting for you at LinkedIn."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में LinkedIn Extension एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
Clicking on the extension's icon is also an easy way to take you directly to the LinkedIn website to view your new activity. Privacy Policy: https://www.linkedin.com/legal/privacy-policy By installing this extension, you agree to LinkedIn's User Agreement at https://www.linkedin.com/legal/user-agreement Please send any feedback to [email protected]
एक्सटेंशन की मूल जानकारी
नाम | LinkedIn Extension |
ID | meajfmicibjppdgbjfkpdikfjcflabpk |
आधिकारिक URL | https://chromewebstore.google.com/detail/linkedin-extension/meajfmicibjppdgbjfkpdikfjcflabpk |
विवरण | This extension lights up with a new notification count whenever you have new activity waiting for you at LinkedIn. |
फ़ाइल का आकार | 14.99 KB |
स्थापना संख्या | 450,530 |
वर्तमान संस्करण | 1.32 |
अंतिम अपडेट | 2022-07-12 |
प्रकाशन तिथि | 2018-07-27 |
रेटिंग | 4.30/5 कुल 364 रेटिंग्स |
डेवलपर | |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
एक्सटेंशन वेबसाइट | https://www.linkedin.com |
सहायता पृष्ठ URL | https://www.linkedin.com/legal/privacy-policy |
गोपनीयता नीति पृष्ठ URL | https://www.linkedin.com/legal/privacy-policy |
समर्थित भाषाएँ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "LinkedIn Extension", "description": "This extension lights up with a new notification count whenever you have new activity waiting for you at LinkedIn.", "background": { "scripts": [ "background.js" ] }, "options_ui": { "page": "options.html", "chrome_style": true }, "icons": { "128": "li-icon.png" }, "content_security_policy": "script-src 'self' https:\/\/platform.linkedin.com; object-src 'self'", "content_scripts": [ { "matches": [ "https:\/\/www.linkedin.com\/*" ], "js": [ "content.js" ] } ], "browser_action": { "default_icon": { "19": "li-icon19.png", "38": "li-icon38.png", "16": "li-icon16.png", "32": "li-icon32.png" } }, "permissions": [ "https:\/\/www.linkedin.com\/*" ], "version": "1.32" } |