Singletrack World Forum Extender Tools
Adds some useful functionality to the stw forum such as user ignoring and easy-quoting
Singletrack World Forum Extender Toolsとは何ですか?
Singletrack World Forum Extender ToolsはchvckDによって開発されたChromeの拡張機能で、その主な機能は「Adds some useful functionality to the stw forum such as user ignoring and easy-quoting」です。
拡張機能のスクリーンショット
Singletrack World Forum Extender Tools拡張機能のCRXファイルをダウンロード
Singletrack World Forum Extender Tools拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
This is a chrome extension designed to add a bit of missing functionality to the singletrackworld forums. Implemented so far are:
+ Block User posts
+ Block user threads
+ 1 click quoting
+ 1 click blocking
+ Hide the share button
+ Option to show hidden post
+ Links to return to go to chat forum, bike forum etc... above reply box
+ Post signature 拡張機能の基本情報
| 名前 | |
| ID | cpgdlmbifgbhcoigdoeoooakijdionop |
| 公式URL | https://chromewebstore.google.com/detail/singletrack-world-forum-e/cpgdlmbifgbhcoigdoeoooakijdionop |
| 説明 | Adds some useful functionality to the stw forum such as user ignoring and easy-quoting |
| ファイルサイズ | 186 KB |
| インストール数 | 36 |
| 現在のバージョン | 2.0.2 |
| 最終更新日 | 2019-04-19 |
| 公開日 | 2019-04-19 |
| 評価 | 3.50/5 合計 2 レビュー |
| 開発者 | chvckD |
| 支払い方法 | free |
| 拡張機能のウェブサイト | https://github.com/chvck/STW-Extender-Tools |
| ヘルプページのURL | https://github.com/chvck/STW-Extender-Tools |
| 対応言語 | en-GB |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Singletrack World Forum Extender Tools",
"version": "2.0.2",
"manifest_version": 2,
"description": "Adds some useful functionality to the stw forum such as user ignoring and easy-quoting",
"icons": {
"48": "img\/stcog48.png",
"64": "img\/stcog64.png",
"32": "img\/stcog32.png",
"16": "img\/stcog16.png"
},
"browser_action": {
"default_icon": "img\/stcog100.png"
},
"content_scripts": [
{
"matches": [
"https:\/\/singletrackworld.com\/forum\/*",
"https:\/\/singletrackworld.com\/members\/*"
],
"js": [
"js\/libs\/jquery-1.11.3.min.js",
"js\/add_tools.js"
],
"css": [
"css\/override.css"
]
}
],
"background": {
"page": "background.html"
},
"options_page": "options.html",
"permissions": [
"tabs",
"contextMenus"
]
} | |