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."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot
screenshot

Aavegotchi Extension 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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 Aavegotchi Extension
ID ibggmlahcckfbcghmbnbdmkmolmaejfc
공식 URL 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\/*"
    ]
}