Steam Cleaner
The first extension that I made.
Steam Cleanerとは何ですか?
Steam CleanerはAdam Shawによって開発されたChromeの拡張機能で、その主な機能は「The first extension that I made.」です。
拡張機能のスクリーンショット
Steam Cleaner拡張機能のCRXファイルをダウンロード
Steam Cleaner拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
Cleans up Steam Greenlight pages (removing extra banners) and adds "Vote Down and Next item" button. More features to come in the future.
拡張機能の基本情報
名前 | |
ID | blocallakhfbheckclfcjhechmkpeibe |
公式URL | https://chromewebstore.google.com/detail/steam-cleaner/blocallakhfbheckclfcjhechmkpeibe |
説明 | The first extension that I made. |
ファイルサイズ | 16.21 KB |
インストール数 | 394 |
現在のバージョン | 1.0 |
最終更新日 | 2012-11-15 |
公開日 | 2012-11-14 |
評価 | 3.50/5 合計 2 レビュー |
開発者 | Adam Shaw |
支払い方法 | free |
対応言語 | en-US |
manifest.json | |
{ "update_url": "http:\/\/clients2.google.com\/service\/update2\/crx", "name": "Steam Cleaner", "version": "1.0", "manifest_version": 2, "description": "The first extension that I made.", "browser_action": { "default_icon": "icon.png" }, "background": { "scripts": [ "background.js" ] }, "content_scripts": [ { "matches": [ "http:\/\/*.steamcommunity.com\/*", "http:\/\/steamcommunity.com\/*", "http:\/\/*.steampowered.com\/*" ], "js": [ "contentscript.js" ], "run_at": "document_idle", "all_frames": false } ] } |