Clown Detector

Spot silly LinkedIn jobs at a glance.

Clown Detectorคืออะไร?

Clown Detector เป็นส่วนขยายของ Chrome ที่พัฒนาโดย dmonaresdev และคุณลักษณะหลักของมันคือ "Spot silly LinkedIn jobs at a glance."

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Clown Detector

ดาวน์โหลดไฟล์ส่วนขยาย Clown Detector ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        Tired of reading through "entry level" LinkedIn job posts, only to see that mid to senior levels of experience are required? How about getting halfway through a job description before spotting that one, deal-breaking keyword you want to avoid? If so, Clown Detector can help you out!

Clown Detector will flag any LinkedIn job that meets your criteria with a clown emoji and the keyword(s) found. 

There are two settings: Entry Level and Clownlist.

Entry Level will flag any job explicitly labeled as "entry level", yet requires mid to senior level experience. Jobs not explicitly listed as "entry level" will not be flagged for years of experience required. The threshold can be set between 3+ to 7+ years, with 7+ years being the default. This setting can be disabled as well.

Clownlist will flag any job containing keywords that you specify. This works for all LinkedIn jobs, regardless of experience level required.

Known Compatibility Issues:
Ad blocking extensions will cause issues if run alongside Clown Detector. Disabling your ad blocker on LinkedIn will prevent the issues. It does not need to be disabled for all sites.

Disclaimer: 
Clown Detector is only meant to save people time by flagging LinkedIn jobs that will likely waste their time, per their specified criteria. I do NOT condone any form of harassment toward companies flagged by Clown Detector or their employees. Please be cool!

Clown Detector should be taken with a grain of salt, particularly with the entry level settings. Not every entry level job flagged is worth skipping over. There are many factors to consider when you come across these posts and they may be worth checking out - go with your gut!

Clown Detector does not collect, use, or disclose any personal user information.                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Clown Detector Clown Detector
ID djejlndcgacefmmiamjankkmdeoebhif
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/clown-detector/djejlndcgacefmmiamjankkmdeoebhif
คำอธิบาย Spot silly LinkedIn jobs at a glance.
ขนาดไฟล์ 646 KB
จำนวนการติดตั้ง 76
เวอร์ชันปัจจุบัน 1.1.6
อัปเดตครั้งล่าสุด 2024-01-17
วันที่เผยแพร่ 2022-12-06
ผู้พัฒนา dmonaresdev
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/DominicMonares/clown-detector
URL หน้าช่วยเหลือ https://github.com/DominicMonares/clown-detector/issues
URL หน้านโยบายความเป็นส่วนตัว https://github.com/DominicMonares/clown-detector/blob/main/PrivacyPolicy
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "short_name": "Clown Detector",
    "name": "Clown Detector",
    "description": "Spot silly LinkedIn jobs at a glance.",
    "version": "1.1.6",
    "manifest_version": 3,
    "action": {
        "default_popup": "index.html",
        "default_icon": "active_icon-32.png"
    },
    "icons": {
        "16": "active_icon-16.png",
        "32": "active_icon-32.png",
        "128": "active_icon-128.png"
    },
    "permissions": [
        "tabs",
        "activeTab",
        "storage",
        "scripting"
    ],
    "host_permissions": [
        "https:\/\/www.linkedin.com\/jobs\/*",
        "https:\/\/www.linkedin.com\/jobs\/"
    ],
    "background": {
        "service_worker": ".\/static\/js\/background.js"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.linkedin.com\/jobs\/*",
                "https:\/\/www.linkedin.com\/jobs\/"
            ],
            "js": [
                ".\/static\/js\/content.js"
            ],
            "run_at": "document_end"
        }
    ]
}