NBI ATS
Finds link and email address in the web page
NBI ATS क्या है?
NBI ATS https://jecho.me द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Finds link and email address in the web page"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में NBI ATS एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
This is a addon to connect your chrome browser to openCATS application. It does: 1. Find Email and Link in Linkedin or Github, show the link to openCATS's candidate. 2. Find Link of Linkedin in Google search results page, show the link to ATS's candidate. openCATS application inforamtion: http://www.opencats.org/ Requirement: Your website should use secure connection (https). Before you use it, you need to patch: 1. https://github.com/wjcheers/OpenCATS/commit/465c3686a90eb0f348790fe41769634208ee8b3c 2. https://github.com/wjcheers/opencats_match/commit/49508bb92d30ab3b423b45afeb58cbd1b91e2417 History: 2023/3/12. 0.26: Update for cakeresume url. To scan email and /me/, /search/, /resumes/, /portfolios/ urls 2022/10/14, 0.25: Update for Linkedin search page. Remove params in url for comparison. 2021/01/19, 0.24: Update for Linkedin search page css class name. 2020/09/08, 0.23: Error handle for Fetch url timeout. 2020/09/07, 0.22: Fetch url from CATS in background.js, but not content.js Please refer to: https://www.chromium.org/Home/chromium-security/extension-content-script-fetches 2020/07/22, 0.21: Update patch for samesite=None. Remove unused permissions. Please refer to: https://github.com/wjcheers/opencats_match/commit/49508bb92d30ab3b423b45afeb58cbd1b91e2417 2020/02/21: 0.20: Add two websites check.
एक्सटेंशन की मूल जानकारी
नाम | NBI ATS |
ID | jdemfbjhbcbhgpklhefanhhijiipioho |
आधिकारिक URL | https://chromewebstore.google.com/detail/nbi-ats/jdemfbjhbcbhgpklhefanhhijiipioho |
विवरण | Finds link and email address in the web page |
फ़ाइल का आकार | 22.84 KB |
स्थापना संख्या | 47 |
वर्तमान संस्करण | 0.26 |
अंतिम अपडेट | 2023-03-13 |
प्रकाशन तिथि | 2020-02-16 |
रेटिंग | 5.00/5 कुल 1 रेटिंग्स |
डेवलपर | https://jecho.me |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
समर्थित भाषाएँ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "NBI ATS", "version": "0.26", "description": "Finds link and email address in the web page", "icons": { "128": "jecho.png" }, "background": { "scripts": [ "background.js" ] }, "content_scripts": [ { "matches": [ "*:\/\/*\/*" ], "js": [ "content_script.js" ], "run_at": "document_end" } ], "options_page": "options.html", "permissions": [ "tabs", "storage", "webNavigation", "*:\/\/*.liepin.com\/*", "*:\/\/*.maimai.cn\/*", "*:\/\/*.linkedin.com\/*", "*:\/\/*.google.com\/*", "*:\/\/*.gmail.com\/*", "*:\/\/*.twitter.com\/*", "*:\/\/*.github.com\/*", "*:\/\/*.behance.net\/*", "*:\/\/*.cakeresume.com\/*" ], "page_action": { "default_name": "NBI ATS", "default_icon": "jecho.png", "default_popup": "popup.html" }, "web_accessible_resources": [ "jecho.png" ], "manifest_version": 2 } |