Gamers' Plane
Options for changing the Gamers' Plane experience.
什麼是Gamers' Plane?
Gamers' Plane是由adam開發的Chrome擴展程式,該擴展的主要功能是“Options for changing the Gamers' Plane experience.”。
擴展截圖
下載Gamers' Plane擴展crx文件
下載Gamers' Plane擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
Indicator to see which players are online. Populate character sheets from DnD Beyond
擴展基本資訊
名稱 | Gamers' Plane |
ID | bbcbnnmaankiikjcdfdpejnebjllldmp |
官方網址 | https://chromewebstore.google.com/detail/gamers-plane/bbcbnnmaankiikjcdfdpejnebjllldmp |
簡介 | Options for changing the Gamers' Plane experience. |
檔案大小 | 52.94 KB |
安裝次數 | 76 |
目前版本 | 1.0.0.3 |
更新時間 | 2022-05-27 |
上架時間 | 2020-08-18 |
評分 | 5.00/5 共 2 次評分 |
開發者 | adam |
電子郵箱 | [email protected] |
付費類型 | free |
支援的語言 | en-GB |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Gamers' Plane", "version": "1.0.0.3", "icons": { "16": "icon_16.png", "32": "icon_32.png", "64": "icon_48.png", "128": "icon_128.png" }, "description": "Options for changing the Gamers' Plane experience.", "permissions": [ "storage" ], "web_accessible_resources": [ "options.html" ], "content_scripts": [ { "matches": [ "https:\/\/gamersplane.com\/forums\/thread\/*", "https:\/\/mapdm.com\/forums\/thread\/*" ], "css": [ "gp-thread.css" ], "js": [ "jquery-3.5.1.min.js", "setting-storage.js", "gp-thread.js" ], "run_at": "document_idle" }, { "matches": [ "https:\/\/gamersplane.com\/characters\/dnd5\/*\/edit\/", "https:\/\/mapdm.com\/characters\/dnd5\/*\/edit\/" ], "css": [ "gp-edit-dnd5e.css" ], "js": [ "jquery-3.5.1.min.js", "setting-storage.js", "gp-edit-dnd5e.js" ], "run_at": "document_idle" }, { "matches": [ "https:\/\/gamersplane.com\/characters\/custom\/*\/edit\/", "https:\/\/mapdm.com\/characters\/custom\/*\/edit\/" ], "css": [ "gp-edit-dnd5e.css" ], "js": [ "jquery-3.5.1.min.js", "setting-storage.js", "gp-edit-custom.js" ], "run_at": "document_idle" }, { "matches": [ "https:\/\/www.dndbeyond.com\/profile\/*\/characters\/*", "https:\/\/www.dndbeyond.com\/characters\/*\/*", "https:\/\/www.dndbeyond.com\/characters\/*" ], "css": [ "dndb-charactersheet.css" ], "js": [ "jquery-3.5.1.min.js", "setting-storage.js", "dndb-charactersheet.js" ], "run_at": "document_idle" } ], "options_ui": { "page": "options.html", "open_in_tab": false }, "manifest_version": 2 } |