Polygonscan Quick
Access polygonscan pages quickly
ما هو Polygonscan Quick؟
Polygonscan Quick هو إضافة Chrome تم تطويرها بواسطة dan، والميزة الرئيسية لها هي "Access polygonscan pages quickly".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Polygonscan Quick
قم بتنزيل ملفات الامتداد Polygonscan Quick بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
Polygonscan Quick. Highlight the address bar, press p, then press tab, paste in an address or a transaction hash, then press enter. The extension will take you to the Polygonscan page for the address or transaction. You can prepend "m" onto the address or transaction to go to Mumbai Polygonscan. Press p, then press tab, then type 'weth' and press enter to go to https://polygonscan.com/address/0x7ceb23fd6bc0add59e62ac25578270cff1b9f619 or prepend 'weth' onto an address to go to https://polygonscan.com/token/0x7ceb23fd6bc0add59e62ac25578270cff1b9f619?a=. This extension adds links to OpenSea from Polygonscan transaction detail pages.
معلومات أساسية عن التمديد
الاسم | Polygonscan Quick |
ID | ndjlhileefmglagfehggdocdaklmadah |
عنوان URL الرسمي | https://chromewebstore.google.com/detail/polygonscan-quick/ndjlhileefmglagfehggdocdaklmadah |
الوصف | Access polygonscan pages quickly |
حجم الملف | 12.28 KB |
عدد التثبيتات | 144 |
النسخة الحالية | 1.0.0 |
آخر تحديث | 2021-07-08 |
تاريخ النشر | 2021-07-07 |
تقييم | 5.00/5 مجموع تقييمات 1 |
المطور | dan |
البريد الإلكتروني | [email protected] |
نوع الدفع | free |
عنوان صفحة سياسة الخصوصية | http://danieljamesviau.com/scribe-extension-privacy-policy.html |
اللغات المدعومة | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Polygonscan Quick", "description": "Access polygonscan pages quickly", "omnibox": { "keyword": "p" }, "icons": { "16": "p.png" }, "background": { "scripts": [ "background.js" ] }, "content_scripts": [ { "js": [ "content.js" ], "matches": [ "https:\/\/polygonscan.com\/tx\/*", "https:\/\/mumbai.polygonscan.com\/tx\/*" ] } ], "version": "1.0.0", "minimum_chrome_version": "9", "manifest_version": 2, "permissions": [ "https:\/\/api.opensea.io\/api\/v1\/asset_contract\/*" ] } |