LinkedIn Sponsored Post Remover
Focus on relevant posts by removing promoted job posts on LinkedIn search page
ما هو LinkedIn Sponsored Post Remover؟
LinkedIn Sponsored Post Remover هو إضافة Chrome تم تطويرها بواسطة https://yafkari.dev، والميزة الرئيسية لها هي "Focus on relevant posts by removing promoted job posts on LinkedIn search page".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة LinkedIn Sponsored Post Remover
قم بتنزيل ملفات الامتداد LinkedIn Sponsored Post Remover بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
Linkedin Sponsored Post Remover is a simple chrome extension that allows you to see only the job posts that are not promoted on LinkedIn. Therefore the application only works on the job search pages on linkedin. Stay tuned for additional features, and don't hesitate to request features or report bugs.
معلومات أساسية عن التمديد
الاسم | LinkedIn Sponsored Post Remover |
ID | cpnehbjfofjpmbmjnikjbohdblhmlnpf |
عنوان URL الرسمي | https://chrome.google.com/webstore/detail/linkedin-sponsored-post-r/cpnehbjfofjpmbmjnikjbohdblhmlnpf |
الوصف | Focus on relevant posts by removing promoted job posts on LinkedIn search page |
حجم الملف | 71.74 KB |
عدد التثبيتات | 118 |
النسخة الحالية | 2.3 |
آخر تحديث | 2023-05-27 |
تاريخ النشر | 2022-02-01 |
تقييم | 3.40/5 مجموع تقييمات 5 |
المطور | https://yafkari.dev |
البريد الإلكتروني | [email protected] |
نوع الدفع | free |
اللغات المدعومة | en-GB |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "short_name": "LinkedIn Sponsored Post Remover", "name": "LinkedIn Sponsored Post Remover", "description": "Focus on relevant posts by removing promoted job posts on LinkedIn search page", "version": "2.3", "manifest_version": 3, "action": { "default_popup": "index.html", "default_icon": { "16": "\/images\/16x16.png", "32": "\/images\/32x32.png", "48": "\/images\/48x48.png", "128": "\/images\/128x128.png" } }, "icons": { "16": "\/images\/16x16.png", "32": "\/images\/32x32.png", "48": "\/images\/48x48.png", "128": "\/images\/128x128.png" }, "content_scripts": [ { "matches": [ "*:\/\/*.linkedin.com\/jobs\/search\/" ], "js": [ "content_script.js" ] } ], "background": { "service_worker": "background.js" }, "host_permissions": [ "*:\/\/*.linkedin.com\/jobs\/search\/" ], "permissions": [ "storage", "activeTab", "scripting" ] } |