Permalinks for Google Inbox

Provides direct URLs to your emails, from Google Inbox.

Permalinks for Google Inbox란 무엇입니까?

Permalinks for Google Inbox은(는) https://adrienjoly.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Provides direct URLs to your emails, from Google Inbox."입니다.

확장 프로그램 스크린샷

screenshot

Permalinks for Google Inbox 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Open-source: https://github.com/adrienjoly/chrome-inbox-permalinks
(pull requests welcome!)

Change log:

* v0.7: Disable extension in classic GMail
* v0.6: Usage instruction when clicking on icon
* v0.5: Support multiple Google Accounts (/u/*)
* v0.4: Fixed Permalink URLs (one per thread)
* v0.3: Better formatting of permalink
* v0.2: Support for Gmail
* v0.1: Support for Google Inbox                    

확장 프로그램 기본 정보

이름 Permalinks for Google Inbox Permalinks for Google Inbox
ID eijfpfnadnijllpfdkdikfamdijafala
공식 URL https://chromewebstore.google.com/detail/permalinks-for-google-inb/eijfpfnadnijllpfdkdikfamdijafala
설명 Provides direct URLs to your emails, from Google Inbox.
파일 크기 26.61 KB
설치 횟수 186
현재 버전 0.7
최근 업데이트 2018-02-22
출시 날짜 2018-02-22
평점 4.08/5 총 12 개의 평점
개발자 https://adrienjoly.com
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/adrienjoly/chrome-inbox-permalinks
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Permalinks for Google Inbox",
    "description": "Provides direct URLs to your emails, from Google Inbox.",
    "version": "0.7",
    "icons": {
        "128": "icon.png"
    },
    "browser_action": {
        "default_popup": "popup.html",
        "default_icon": "icon.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/inbox.google.com\/*"
            ],
            "js": [
                "inboxsdk.js",
                "content.js"
            ],
            "run_at": "document_end"
        }
    ],
    "content_security_policy": "script-src 'self' https:\/\/apis.google.com; object-src 'self'",
    "permissions": [
        "identity",
        "https:\/\/inbox.google.com\/",
        "https:\/\/mail.google.com\/"
    ],
    "web_accessible_resources": [
        "link.png"
    ],
    "manifest_version": 2
}