Send Me App!

This extension will help quickly send dowload link for apps from Google Play and App Store directly to your mobile phone.

Send Me App!란 무엇입니까?

Send Me App!은(는) https://sendmeapp.link에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "This extension will help quickly send dowload link for apps from Google Play and App Store directly to your mobile phone."입니다.

확장 프로그램 스크린샷

screenshot

Send Me App! 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        This extension will help quickly send dowload link for apps from Google Play and App Store directly to your mobile phone.                    

확장 프로그램 기본 정보

이름 Send Me App! Send Me App!
ID igopfenmhifeddkgccbncdakpabcfojc
공식 URL https://chromewebstore.google.com/detail/send-me-app/igopfenmhifeddkgccbncdakpabcfojc
설명 This extension will help quickly send dowload link for apps from Google Play and App Store directly to your mobile phone.
파일 크기 447 KB
설치 횟수 24
현재 버전 2.0
최근 업데이트 2017-06-16
출시 날짜 2017-06-16
평점 5.00/5 총 1 개의 평점
개발자 https://sendmeapp.link
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 http://sendmeapp.link/?from=store
도움말 페이지 URL http://sendmeapp.link/?feedback
지원되는 언어 en,ru
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "__MSG_name__",
    "short_name": "__MSG_shortname__",
    "description": "__MSG_description__",
    "version": "2.0",
    "icons": {
        "16": ".\/img\/logo\/logo-active-16.png",
        "48": ".\/img\/logo\/logo-active-48.png",
        "128": ".\/img\/logo\/logo-active-128.png"
    },
    "homepage_url": "https:\/\/sendmeapp.link\/",
    "browser_action": {
        "default_title": "__MSG_name__"
    },
    "background": {
        "scripts": [
            ".\/scripts\/jquery.js",
            "background.js"
        ]
    },
    "default_locale": "en",
    "options_ui": {
        "page": ".\/welcome-page\/index.html",
        "open_in_tab": true
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "css": [
                ".\/styles\/card.css",
                ".\/styles\/panel.css"
            ],
            "js": [
                ".\/scripts\/jquery.js",
                ".\/scripts\/content_script.js",
                ".\/scripts\/mask.js",
                ".\/scripts\/panel.js"
            ],
            "run_at": "document_end"
        }
    ],
    "permissions": [
        "alarms",
        "activeTab",
        "tabs",
        "*:\/\/*\/*",
        "notifications",
        "",
        "storage"
    ],
    "content_security_policy": "script-src 'self' https:\/\/www.google-analytics.com; object-src 'self'",
    "web_accessible_resources": [
        "img\/*.*",
        "welcome-page\/index.html",
        "fonts\/*.ttf"
    ]
}