Metacritic search fixer

Replaces '%20' in metacritic search request to '+'

Metacritic search fixer란 무엇입니까?

Metacritic search fixer은(는) Stainboy에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Replaces '%20' in metacritic search request to '+'"입니다.

확장 프로그램 스크린샷

screenshot

Metacritic search fixer 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        This extension is for anyone who wants to add Metacritic to their search engines in Chrome. If you've tried to do that before, you'll have noticed that it doesn't work if the search term contains more than one word (i.e. a space). That's because Metacritic uses weird search strings that replace the space with a "+", but Chrome assumes that a search string will replace a space with a "%20".

Its such a simple little thing, but it's very frustrating. This extension replaces the "%20" with a "+", allowing you to add Metacritic to your search engines!

This is the search URL you need: http://metacritic.com/search/all/%s/results

This builds on FearJiri's Google-Chrome-URL-Replacer-Extension hosted on GitHub. I have added a couple of lines so that it works in a modern Chrome Browser, and icons for prettiness.                    

확장 프로그램 기본 정보

이름 Metacritic search fixer Metacritic search fixer
ID kmhekhelpcjkempcidfnkekhnkmedpih
공식 URL https://chromewebstore.google.com/detail/metacritic-search-fixer/kmhekhelpcjkempcidfnkekhnkmedpih
설명 Replaces '%20' in metacritic search request to '+'
파일 크기 29.46 KB
설치 횟수 81
현재 버전 0.2.2
최근 업데이트 2013-08-08
출시 날짜 2013-08-08
평점 5.00/5 총 1 개의 평점
개발자 Stainboy
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/stain-boy/Google-Chrome-Metacritic-Search-URL-Fix
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "content_scripts": [
        {
            "include_globs": [
                "http:\/\/www.metacritic.com\/search\/*%20*"
            ],
            "js": [
                "script.js"
            ],
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "run_at": "document_start"
        }
    ],
    "converted_from_user_script": true,
    "description": "Replaces '%20' in metacritic search request to '+'",
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "name": "Metacritic search fixer",
    "manifest_version": 2,
    "version": "0.2.2"
}