LinkedIn Years of Experience Checker
This extension checks the years of experience required for a job on LinkedIn.
什么是LinkedIn Years of Experience Checker?
LinkedIn Years of Experience Checker是由msr16npm开发的Chrome扩展程序,该扩展的主要功能是“This extension checks the years of experience required for a job on LinkedIn.”。
扩展截图
下载LinkedIn Years of Experience Checker扩展crx文件
下载LinkedIn Years of Experience Checker扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
This extension checks the years of experience required for a job on LinkedIn.
扩展基本信息
名称 | LinkedIn Years of Experience Checker |
ID | donhgkmejidpmaaaegcncggmplnpfcob |
官方URL | https://chromewebstore.google.com/detail/linkedin-years-of-experie/donhgkmejidpmaaaegcncggmplnpfcob |
简介 | This extension checks the years of experience required for a job on LinkedIn. |
文件大小 | 197 KB |
安装次数 | 356 |
当前版本 | 1.0.0 |
更新时间 | 2023-07-18 |
上架时间 | 2023-07-18 |
评分 | 3.67/5 共3次评分 |
开发者 | msr16npm |
电子邮箱 | [email protected] |
付费类型 | free |
隐私政策页面URL | https://github.com/MayoSR/CitizIn |
支持的语言 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "LinkedIn Years of Experience Checker", "description": "This extension checks the years of experience required for a job on LinkedIn.", "version": "1.0.0", "permissions": [ "activeTab", "https:\/\/www.linkedin.com\/*", "tabs" ], "icons": { "16": "icons\/icon16.png", "32": "icons\/icon32.png", "96": "icons\/icon96.png" }, "background": { "service_worker": "extensions\/background.js" }, "content_scripts": [ { "matches": [ "https:\/\/www.linkedin.com\/*" ], "js": [ "extensions\/content.js" ] } ], "web_accessible_resources": [ { "resources": [ "stats.png" ], "matches": [ "https:\/\/www.linkedin.com\/*" ] } ] } |