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 '+'」です。
拡張機能のスクリーンショット
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 |
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" } |