Aavegotchi Extension
Pet and view your Aavegotchis no matter where you are on the web.
什麼是Aavegotchi Extension?
Aavegotchi Extension是由calebgcbrown開發的Chrome擴展程式,該擴展的主要功能是“Pet and view your Aavegotchis no matter where you are on the web.”。
擴展截圖
下載Aavegotchi Extension擴展crx文件
下載Aavegotchi Extension擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
This simple Chrome extension utilises Metamask to view and pet your Aavegotchis. You will be able to keep track of and be notified when your fren needs their next interaction. Then, you can Pet them individually or all at once from any webpage connected to the Matic Network. Requirements: - Metamask (Connected to Matic network) - Atleast one Aavegotchi assigned to your address If your Aavegotchi's are not showing, either connect your current page to Metamask or go on to a webpage that already is connected to Metamask and refresh the page. Your Aavegotchi friends will then be able to follow you throughout your journeys on the web! If you like this project, feel free to tip the creator at: 0x7121CBdA61e025EB6639Cd797F63aad30F270680
擴展基本資訊
名稱 | Aavegotchi Extension |
ID | ibggmlahcckfbcghmbnbdmkmolmaejfc |
官方網址 | https://chromewebstore.google.com/detail/aavegotchi-extension/ibggmlahcckfbcghmbnbdmkmolmaejfc |
簡介 | Pet and view your Aavegotchis no matter where you are on the web. |
檔案大小 | 713 KB |
安裝次數 | 1,393 |
目前版本 | 0.0.0.2 |
更新時間 | 2021-04-02 |
上架時間 | 2021-03-22 |
評分 | 3.00/5 共 6 次評分 |
開發者 | calebgcbrown |
電子郵箱 | [email protected] |
付費類型 | free |
隱私政策頁面URL | https://docs.google.com/document/d/1gTo61bV_53pNObyXalbKDXgac1iOZDNHvHYjlBpvwAA/edit?usp=sharing |
支援的語言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "version": "0.0.0.2", "name": "Aavegotchi Extension", "short_name": "Aavegotchi", "description": "Pet and view your Aavegotchis no matter where you are on the web.", "default_locale": "en", "background": { "scripts": [ "background.js" ] }, "browser_action": { "default_popup": "popup.html" }, "content_scripts": [ { "all_frames": false, "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "content.js" ] } ], "icons": { "16": "assets\/img\/icon-16x16.png", "48": "assets\/img\/icon-48x48.png", "128": "assets\/img\/icon-128x128.png" }, "permissions": [ "storage" ], "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'; connect-src ws:\/\/localhost:*\/", "web_accessible_resources": [ "assets\/img\/*" ] } |