freelancer extension

The extension displays employer's details on freelancer.com and removes annoying pop-up notifications of newly posted projects.

freelancer extensionคืออะไร?

freelancer extension เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://it-olymp.com และคุณลักษณะหลักของมันคือ "The extension displays employer's details on freelancer.com and removes annoying pop-up notifications of newly posted projects."

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

screenshot
screenshot

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

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

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

                        This Google Chrome extension will do three very important things:

1. It will display the name of the employer on the project page, as well as the link to his profile page (inspite of freelancer.com not allowing it to be seen).

2. It shows the "View Employer's Profile" button on client's profile page. You cannot see the average star-rating of the employer (curtosy of Freelancer), but you can see all of his revies, yay! (If the button appears unresponsive, refreshing the page should do the trick)

3. It will remove those annoying pop-up notifications of the latest posted projects. (Maybe you are OK with those, but they are killing me!) They are particularly annoying when trying to take an exam, or when trying to bid on a project and accidentally clicking on them... The main thing is that I failed to see any practical benefits of these notifications, so... hence the "remover" option.

This version also features one bug :) - when you setup your "Options", it does absolutely nothing! For this reason, it is still in construction phase.

This extension is actually an announcement for the soon-to-be-finished desktop application which will hopefully be of great help for freelancers around the world! For more info visit it-olymp.com                    

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

ชื่อ freelancer extension freelancer extension
ID ieelccadneohfiecpoocjoaolcaglmfp
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/freelancer-extension/ieelccadneohfiecpoocjoaolcaglmfp
คำอธิบาย The extension displays employer's details on freelancer.com and removes annoying pop-up notifications of newly posted projects.
ขนาดไฟล์ 774 KB
จำนวนการติดตั้ง 734
เวอร์ชันปัจจุบัน 3
อัปเดตครั้งล่าสุด 2016-08-09
วันที่เผยแพร่ 2016-08-08
คะแนน 3.09/5 รวมทั้งหมด 11 คะแนน
ผู้พัฒนา https://it-olymp.com
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย http://it-olymp.com/chrome-extension-for-freelancer-com/
ภาษาที่รองรับ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "freelancer extension",
    "description": "The extension displays employer's details on freelancer.com and removes annoying pop-up notifications of newly posted projects.",
    "version": "3",
    "manifest_version": 2,
    "icons": {
        "16": "e27-freelancer.png",
        "48": "e27-freelancer.png",
        "128": "e27-freelancer.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.freelancer.com\/projects\/*"
            ],
            "js": [
                "client.js"
            ]
        },
        {
            "matches": [
                "https:\/\/www.freelancer.com\/*"
            ],
            "js": [
                "wrapper.js"
            ]
        },
        {
            "matches": [
                "https:\/\/www.freelancer.com\/u\/*"
            ],
            "js": [
                "employerview.js"
            ]
        }
    ],
    "permissions": [
        "storage"
    ]
}