RecruiterExtension
This is a sample extension that works to help recruiting
什麼是RecruiterExtension?
RecruiterExtension是由suket.s16開發的Chrome擴展程式,該擴展的主要功能是“This is a sample extension that works to help recruiting”。
擴展截圖
下載RecruiterExtension擴展crx文件
下載RecruiterExtension擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
RecruiterPlus aims to automate the recruiting practice. By integrating with Linkedin XRay, this chrome extension provides high quality and accurate recommendations for people one should reach out to in order to get their next big job. Features - Automatically find potential future connections for a role - Have personalized search results based on your experience - Completely Free
擴展基本資訊
名稱 | RecruiterExtension |
ID | gpeeahfkpkinldndkiihnjgpegiccgcc |
官方網址 | https://chromewebstore.google.com/detail/recruiterextension/gpeeahfkpkinldndkiihnjgpegiccgcc |
簡介 | This is a sample extension that works to help recruiting |
檔案大小 | 270 KB |
安裝次數 | 24 |
目前版本 | 5.0.4 |
更新時間 | 2023-03-02 |
上架時間 | 2023-03-01 |
開發者 | suket.s16 |
電子郵箱 | [email protected] |
付費類型 | free |
支援的語言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "description": "This is a sample extension that works to help recruiting", "version": "5.0.4", "manifest_version": 3, "name": "RecruiterExtension", "options_page": "options.html", "action": { "default_popup": "popup.html", "default_icon": "icon-34.png" }, "icons": { "128": "icon-128.png" }, "content_scripts": [ { "matches": [ "https:\/\/www.linkedin.com\/*" ], "js": [ "contentScript.bundle.js" ], "css": [ "content.styles.css" ] } ], "web_accessible_resources": [ { "resources": [ "content.styles.css", "icon-128.png", "icon-34.png" ], "matches": [] } ] } |