如何在 Chrome 中自動將 s3 url 轉換為 http?

如何在 Chrome 中自動將 s3 url 轉換為 http?

假設我有一個這樣的連結:

s3://mybucket/mybucket?prefix=myprefix/file.json    

然後我在chrome瀏覽器中打開它。我會得到一個錯誤。是否可以自動翻譯 s3 url

s3://mybucket/mybucket?prefix=myprefix/file.json

https://s3.console.aws.amazon.com/s3/buckets/mybucket?prefix=myprefix/file.json

並獲得重定向/打開 aws s3 web consul?

答案1

您可以使用小書籤來修改鏈接,但每次要單擊鏈接時都必須運行它。

例如:

javascript:(function(){document.querySelectorAll("a").forEach((l)=>{m=l.href.match(/^s3\:\/\/([^\/]+)\/([^$]+)$/);if(m){l.href=`https://s3.console.aws.amazon.com/s3/buckets/${m[2]}`}})})()

(還沒測試過,但應該可以嗎?)

相關內容