ollie.fund
ollie powered values.
ollie.fundとは何ですか?
ollie.fundはhttp://ollie.fundによって開発されたChromeの拡張機能で、その主な機能は「ollie powered values.」です。
拡張機能のスクリーンショット
ollie.fund拡張機能のCRXファイルをダウンロード
ollie.fund拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
uses values from https://rolimons.com/ and demand data collected from https://ollie.fund/
completely open source @ https://github.com/mxmmxx/extension
- adds a percent gain in the middle of trades
- adds the demand of an item in the top right of its photo
- fixes a few graphical bugs in the roblox trade interface, including making catalog links open in a new tab instead of the current tag
this extension is not affiliated with Roblox Corporation or Rolimon's in any shape or form. 拡張機能の基本情報
| 名前 | |
| ID | ehbicfoojmomhdlkccmhnlccbpfkocfo |
| 公式URL | https://chrome.google.com/webstore/detail/olliefund/ehbicfoojmomhdlkccmhnlccbpfkocfo |
| 説明 | ollie powered values. |
| ファイルサイズ | 41.49 KB |
| インストール数 | 29 |
| 現在のバージョン | 1.0.0 |
| 最終更新日 | 2022-05-17 |
| 公開日 | 2022-05-17 |
| 評価 | 5.00/5 合計 2 レビュー |
| 開発者 | http://ollie.fund |
| Eメール | [email protected] |
| 拡張機能のウェブサイト | https://ollie.fund/ |
| 対応言語 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 3,
"name": "ollie.fund",
"version": "1.0.0",
"action": {
"default_icon": {
"16": "images\/x16.png",
"24": "images\/x24.png",
"32": "images\/x32.png",
"64": "images\/x64.png"
},
"default_title": "ollie powered values.",
"default_popup": "views\/popup.html"
},
"description": "ollie powered values.",
"icons": {
"16": "images\/x16.png",
"32": "images\/x32.png",
"48": "images\/x48.png",
"128": "images\/x128.png"
},
"permissions": [
"storage"
],
"host_permissions": [
"https:\/\/roblox.com\/trades"
],
"content_scripts": [
{
"matches": [
"https:\/\/*.roblox.com\/*"
],
"js": [
"scripts\/trades.js"
],
"css": [
"assets\/main.css"
]
}
],
"background": {
"service_worker": "scripts\/background.js"
}
} | |