Meta-Dog Leash

Get Meta App Referrals from the Store!

Meta-Dog Leash란 무엇입니까?

Meta-Dog Leash은(는) david.c.iglesias에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Get Meta App Referrals from the Store!"입니다.

확장 프로그램 스크린샷

screenshot
screenshot

Meta-Dog Leash 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Most Meta Apps can be referred to Friends by those who have bought them (Advocates) in certain regions (UK, parts of US, ES, NL and KR so far). In doing so, the Friend receives a 25% discount, and the Advocate receives some credit in their own account.

The purpose of this Extension is simply to connect Friends and Advocates so they can both benefit easily, rather than attempting to find people on forums or other venues.

By installing the Extension, you should be able to see the `Get 25% discount!` message as one of the options when browsing a Meta App. On clicking, it would redirect you to the discount directly.

This extension is open-source ( https://github.com/meta-dog/meta-leash ) and uses an open-source backend-server ( https://github.com/meta-dog/meta-bones ) to run a lottery system of which Advocate's referral you're getting, to ensure that the share is fair. Anyone can register their own referral links as Advocate, and anyone can visit the website to become a Friend and receive specific Meta App referrals quickly.

There is no fee for using either the extension or the backend, and no registration is needed. There are also no ads in either the site, the extension or the backend.                    

확장 프로그램 기본 정보

이름 Meta-Dog Leash Meta-Dog Leash
ID hjngnbfokmhmpnifpdmlfdkjfjbjeojp
공식 URL https://chromewebstore.google.com/detail/meta-dog-leash/hjngnbfokmhmpnifpdmlfdkjfjbjeojp
설명 Get Meta App Referrals from the Store!
파일 크기 19.22 KB
설치 횟수 70
현재 버전 0.3.4
최근 업데이트 2023-10-11
출시 날짜 2022-09-27
평점 5.00/5 총 1 개의 평점
개발자 david.c.iglesias
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://meta-dog.github.io/meta-dog/
지원되는 언어 en,es
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "__MSG_app_name__",
    "description": "__MSG_app_desc__",
    "default_locale": "en",
    "version": "0.3.4",
    "manifest_version": 3,
    "background": {
        "service_worker": "scripts\/background.js"
    },
    "permissions": [],
    "host_permissions": [
        "https:\/\/meta-dog.onrender.com\/api\/*"
    ],
    "action": {
        "default_popup": "views\/intro.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"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.meta.com\/*experiences\/*"
            ],
            "js": [
                "scripts\/app.js"
            ],
            "run_at": "document_idle"
        }
    ]
}