在Ubuntu上自定義Postman界面的信息目前沒有找到,但是我可以為您提供在Ubuntu上安裝Postman的步驟:
sudo tar -xzf Postman-linux-x64-7.6.0.tar.gz -C /opt/
sudo ln -s /opt/Postman/Postman /usr/bin/postman
postman.desktop
文件,以便在應用菜單中啟動Postman:sudo vim /usr/share/applications/postman.desktop
[Desktop Entry]
Encoding=UTF-8
Name=Postman
Exec=/opt/Postman/Postman
Icon=/opt/Postman/app/resources/app/assets/icon.png
Terminal=false
Type=Application
Categories=Development;
sudo chmod +x /usr/share/applications/postman.desktop
如果您需要在Ubuntu上為Postman設置代理,可以按照以下步驟操作:
sudo snap install postman
請注意,Postman的代理設置是全局的,會影響所有HTTP和HTTPS請求。
希望以上信息對您有所幫助。