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文件

下載Metacritic search fixer擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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
官方網址 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"
}