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은(는) https://it-olymp.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "The extension displays employer's details on freelancer.com and removes annoying pop-up notifications of newly posted projects."입니다.
확장 프로그램 스크린샷
freelancer extension 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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 |
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" ] } |