Hide Promoted Jobs
Hides promoted job postings on LinkedIn's job search pages.
ما هو Hide Promoted Jobs؟
Hide Promoted Jobs هو إضافة Chrome تم تطويرها بواسطة Fabricio Duarte، والميزة الرئيسية لها هي "Hides promoted job postings on LinkedIn's job search pages.".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Hide Promoted Jobs
قم بتنزيل ملفات الامتداد Hide Promoted Jobs بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
No more getting distracted by job postings that don't have any of the searched keywords on LinkedIn, enhance the job seeking experience!
معلومات أساسية عن التمديد
الاسم | Hide Promoted Jobs |
ID | bmilkimafelnhekidknkamkhkbeciijg |
عنوان URL الرسمي | https://chromewebstore.google.com/detail/hide-promoted-jobs/bmilkimafelnhekidknkamkhkbeciijg |
الوصف | Hides promoted job postings on LinkedIn's job search pages. |
حجم الملف | 13.14 KB |
عدد التثبيتات | 2,128 |
النسخة الحالية | 1.3 |
آخر تحديث | 2023-02-01 |
تاريخ النشر | 2023-01-21 |
تقييم | 4.89/5 مجموع تقييمات 19 |
المطور | Fabricio Duarte |
البريد الإلكتروني | [email protected] |
نوع الدفع | free |
عنوان صفحة المساعدة | https://github.com/winterhazel/hide-promoted-jobs |
اللغات المدعومة | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Hide Promoted Jobs", "version": "1.3", "description": "Hides promoted job postings on LinkedIn's job search pages.", "homepage_url": "https:\/\/github.com\/winterhazel\/hide-promoted-jobs", "icons": { "16": "icons\/icon16.png", "32": "icons\/icon32.png", "48": "icons\/icon48.png", "64": "icons\/icon64.png", "128": "icons\/icon128.png" }, "action": { "browser_style": true, "default_icon": { "16": "icons\/icon16.png", "32": "icons\/icon32.png", "48": "icons\/icon48.png", "64": "icons\/icon64.png", "128": "icons\/icon128.png" }, "default_title": "Toggle Extension" }, "background": { "service_worker": "js\/background.js" }, "content_scripts": [ { "matches": [ "*:\/\/*.linkedin.com\/*" ], "js": [ "js\/hide.js" ] } ], "permissions": [ "storage" ], "web_accessible_resources": [ { "resources": [ "js\/langs.json" ], "matches": [ "*:\/\/*.linkedin.com\/*" ] } ] } |