SGM+
Extra features for SGM Community Forum (www.seriousgmod.com)
SGM+とは何ですか?
SGM+はChaiによって開発されたChromeの拡張機能で、その主な機能は「Extra features for SGM Community Forum (www.seriousgmod.com)」です。
拡張機能のスクリーンショット
SGM+拡張機能のCRXファイルをダウンロード
SGM+拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
Features: * Steam badges on profiles & threads showing Steam status information. * Auto-updated new posts widget on the dedicated shoutbox page * Adjust the height of the shoutbox on the home page. * Shoutbox input text more legible. * Preview your shoutbox color before applying it. * Fix for shoutbox scroll issue. == Extension is open source and open to contributions. https://github.com/nubpro/SGM-Chrome-Extension https://github.com/zikeji/SGM-Chrome-Extension-Steam-API-Backend == Active thread on community forum. https://www.seriousgmod.com/threads/extension-sgm-features-fixes-for-sgm-forum.24821/ == Release information and changelog. https://github.com/nubpro/SGM-Extension/releases
拡張機能の基本情報
名前 | SGM+ |
ID | dmbpihmdkiieiknjnlgebnacmleljcao |
公式URL | https://chromewebstore.google.com/detail/sgm+/dmbpihmdkiieiknjnlgebnacmleljcao |
説明 | Extra features for SGM Community Forum (www.seriousgmod.com) |
ファイルサイズ | 89.6 KB |
インストール数 | 40 |
現在のバージョン | 2.1.2 |
最終更新日 | 2021-02-19 |
公開日 | 2018-06-19 |
評価 | 5.00/5 合計 21 レビュー |
開発者 | Chai |
Eメール | [email protected] |
支払い方法 | free |
拡張機能のウェブサイト | http://www.seriousgmod.com/ |
対応言語 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "__MSG_appName__", "description": "__MSG_appDescription__", "version": "2.1.2", "short_name": "__MSG_appShortName__", "author": "Chai", "manifest_version": 2, "default_locale": "en", "icons": { "16": "images\/icon-16.png", "128": "images\/icon-128.png" }, "web_accessible_resources": [ "images\/*" ], "background": { "scripts": [ "scripts\/background.js" ] }, "content_scripts": [ { "matches": [ "*:\/\/*.seriousgmod.com\/*" ], "css": [ "styles\/style.css" ], "run_at": "document_start", "all_frames": false }, { "matches": [ "*:\/\/*.seriousgmod.com\/*" ], "js": [ "scripts\/steamBadge.js" ], "run_at": "document_end", "all_frames": false }, { "matches": [ "*:\/\/*.seriousgmod.com\/" ], "js": [ "scripts\/shoutboxHeightHandle.js" ], "run_at": "document_start", "all_frames": false }, { "matches": [ "*:\/\/*.seriousgmod.com\/chat\/*" ], "js": [ "scripts\/shoutboxSidebarMod.js" ], "run_at": "document_start", "all_frames": false }, { "matches": [ "*:\/\/*.seriousgmod.com\/", "*:\/\/*.seriousgmod.com\/chat\/*" ], "js": [ "scripts\/shoutboxGlobalMods.js" ], "run_at": "document_start", "all_frames": false } ], "permissions": [ "storage", "https:\/\/www.seriousgmod.com\/", "https:\/\/sgmod.ext.steam.zikeji.com\/" ] } |