GAS Fee & Link Checker
Display the ETH GAS price now and Save the link as bookmark and alert if clicked on similar spam links
Vad är GAS Fee & Link Checker?
GAS Fee & Link Checker är en Chrome-tillägg utvecklad av 0xJohnny, Max | FomoDog, och dess huvudfunktion är "Display the ETH GAS price now and Save the link as bookmark and alert if clicked on similar spam links".
Tilläggsskärmbilder
Ladda ner GAS Fee & Link Checker-förlängningens CRX-fil
Ladda ner GAS Fee & Link Checker-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
                        GAS & Link Checker 功能介紹:
1. ETH Gas fee 查詢
Current Gas Fee 代表著目前這個 block 平均的 Gas fee,平常的交易用 Current Gas Fee 就夠了.
如果你今天要搶 NFT 或交易的話,可以參考 Recommended 的 Gas Fee 或是用這個數字再乘以 2~X 倍,依照你 FOMO 的程度出價.
2. 書籤功能
幣圈最忌諱的就是在 Google 搜尋中查詢幣種或官方網站,因為很多釣魚網站的搜尋排名都比官方網站還前面,甚至釣魚網站還會下廣告,進入後只要不留意簽署授權,基本上你的財產就都飛走了。
而書籤的功能就是讓你將常用的幣圈網站加入其中,目前已經內建了幾個網站:
www.coingecko.com :想找任何幣的資訊或網站,都建議從這裡進入,網站的資料蠻齊全的
uniswap 和 pancakeswap :這兩個網站,基本上要在一級市場交易,都會透過這兩個網站,一個是 ETH 鏈,一個是 BSC 鏈
dextools 和 poocoin.app :如果你有想查任何一個幣價,基本上這兩個都找得到!
當然還有更多更好用的幣圈網站和工具,你可以點擊 “Add current web page to offical links” 來新增他們,或點擊 “Remove” 來移除,切記不要再去 Google 搜尋,以免不小心踩到釣魚網站。
3. 釣魚網站偵測
你看得出來這兩個網址的差異嗎?
https://clonex.rtfkt.com/
https://clonex.rlfkt.com/
最後一個功能是防釣魚網站的警示通知,舉例假設你有將 Clonex 的官方網站 (https://clonex.rtfkt.com/) 加入書籤,當你不小心踩到釣魚網時,會跳出警告通知                     Grundläggande Information om Tillägg
| Namn |   |  
| ID | icgljankimmodagekcgnkjogeokekifk | 
| Officiell webbadress | https://chromewebstore.google.com/detail/gas-fee-link-checker/icgljankimmodagekcgnkjogeokekifk | 
| Beskrivning | Display the ETH GAS price now and Save the link as bookmark and alert if clicked on similar spam links | 
| Filstorlek | 2.8 MB | 
| Antal Installationer | 510 | 
| Aktuell Version | 1.0 | 
| Senast Uppdaterad | 2021-12-30 | 
| Publiceringsdatum | 2021-12-30 | 
| Betyg | 5.00/5 Totalt 18 Betyg | 
| Utvecklare | 0xJohnny, Max | FomoDog | 
| E-post | [email protected] | 
| Betalningssätt | free | 
| Stödda Språk | zh-TW | 
| manifest.json | |
 {
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "GAS Fee & Link Checker",
    "description": "Display the ETH GAS price now and Save the link as bookmark and alert if clicked on similar spam links",
    "version": "1.0",
    "manifest_version": 3,
    "background": {
        "service_worker": "background.js"
    },
    "permissions": [
        "storage",
        "activeTab",
        "scripting"
    ],
    "action": {
        "default_popup": "popup.html",
        "default_icon": {
            "16": "\/images\/logo16.png",
            "32": "\/images\/logo32.png",
            "48": "\/images\/logo48.png",
            "128": "\/images\/logo128.png"
        }
    },
    "icons": {
        "16": "\/images\/logo16.png",
        "32": "\/images\/logo32.png",
        "48": "\/images\/logo48.png",
        "128": "\/images\/logo128.png"
    },
    "options_page": "options.html",
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*\/*"
            ],
            "js": [
                "page-loaded.js"
            ]
        }
    ]
}  |  |