Metacritic search fixer

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

Metacritic search fixer là gì?

Metacritic search fixer là một tiện ích mở rộng Chrome được phát triển bởi Stainboy, và tính năng chính của nó là "Replaces '%20' in metacritic search request to '+'".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Metacritic search fixer

Tải xuống các tệp mở rộng Metacritic search fixer dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Metacritic search fixer Metacritic search fixer
ID kmhekhelpcjkempcidfnkekhnkmedpih
URL Chính Thức https://chromewebstore.google.com/detail/metacritic-search-fixer/kmhekhelpcjkempcidfnkekhnkmedpih
Mô tả Replaces '%20' in metacritic search request to '+'
Kích Thước Tệp 29.46 KB
Số Lần Cài Đặt 81
Phiên Bản Hiện Tại 0.2.2
Cập Nhật Lần Cuối 2013-08-08
Ngày Phát Hành 2013-08-08
Đánh Giá 5.00/5 Tổng số 1 Đánh Giá
Nhà Phát Triển Stainboy
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/stain-boy/Google-Chrome-Metacritic-Search-URL-Fix
Ngôn Ngữ Được Hỗ Trợ 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"
}