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 |
Eメール | [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\/*" ] } ] } |