Referer Manager
Control your referer headers. Apply flexible rules to block, allow, or change HTTP referer.
Referer Manager란 무엇입니까?
Referer Manager은(는) Kornelia Olofsson에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Control your referer headers. Apply flexible rules to block, allow, or change HTTP referer."입니다.
확장 프로그램 스크린샷
Referer Manager 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Referer manager changes HTTP referer with flexible configuration. You can spoof a referrer for some reason. It could be helpful for developers and marketers. Features: ✰ Block, allow, change referrers ✰ Applies to both referrer HTTP headers and javascript document.referrer value ✰ Apply rules for a specific domain, URL, or even using regular expressions ✰ You can apply a rule to requests originated from a specific domain to requests to a specific domain, or only to 3rd party requests. Please note, that by default JS referrer spoofing is disabled. It could break functionality on some sites.
확장 프로그램 기본 정보
이름 | |
ID | fpfmkkljdiofokoikgglafnfmmffmmhc |
공식 URL | https://chrome.google.com/webstore/detail/referer-manager/fpfmkkljdiofokoikgglafnfmmffmmhc |
설명 | Control your referer headers. Apply flexible rules to block, allow, or change HTTP referer. |
파일 크기 | 265 KB |
설치 횟수 | 934,095 |
현재 버전 | 1.5.3 |
최근 업데이트 | 2022-09-16 |
출시 날짜 | 2021-05-16 |
평점 | 4.70/5 총 10 개의 평점 |
개발자 | Kornelia Olofsson |
이메일 | [email protected] |
결제 유형 | free |
개인정보 보호 정책 페이지 URL | https://www.notion.so/Referer-Manager-Privacy-Policy-7b2e9594e2d34e4d9eb7bbe5a597f347 |
지원되는 언어 | id,ms,de,en,en-GB,en-US,fil,fr,nl,no,vi,tr,ca,da,et,es,hr,it,lv,lt,hu,pl,pt-BR,pt-PT,ro,sk,sl,fi,sv,cs,el,sr,bg,ru,mr,hi,bn,gu,ta,te,ml,th,zh-CN,zh-TW,ja,ko |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "browser_action": { "default_icon": { "300": "icons\/icon-300.png", "128": "icons\/icon-128.png", "48": "icons\/icon-48.png", "16": "icons\/icon-16.png" }, "default_title": "Block Referer for this site" }, "content_security_policy": "script-src 'self' https:\/\/www.google-analytics.com; object-src 'self'", "icons": { "300": "icons\/icon-300.png", "128": "icons\/icon-128.png", "48": "icons\/icon-48.png", "16": "icons\/icon-16.png" }, "content_scripts": [ { "all_frames": true, "js": [ "js\/blockJavascriptReferer.js" ], "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "run_at": "document_start" } ], "background": { "page": "html\/background.html", "persistent": true }, "options_page": "html\/options.html", "default_locale": "en", "manifest_version": 2, "name": "__MSG_name__", "description": "__MSG_description__", "permissions": [ "http:\/\/*\/*", "https:\/\/*\/*", "webRequest", "webRequestBlocking", "storage" ], "version": "1.5.3" } |