Permalinks for Google Inbox

Provides direct URLs to your emails, from Google Inbox.

What is Permalinks for Google Inbox?

Permalinks for Google Inbox is a Chrome extension developed by https://adrienjoly.com, and its main feature is "Provides direct URLs to your emails, from Google Inbox.".

Extension Screenshots

screenshot

Download Permalinks for Google Inbox Extension CRX File

Download Permalinks for Google Inbox extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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                    

Extension Basic Information

Name Permalinks for Google Inbox Permalinks for Google Inbox
ID eijfpfnadnijllpfdkdikfamdijafala
Official URL https://chromewebstore.google.com/detail/permalinks-for-google-inb/eijfpfnadnijllpfdkdikfamdijafala
Description Provides direct URLs to your emails, from Google Inbox.
File Size 26.61 KB
Installation Count 186
Current Version 0.7
Last Updated 2018-02-22
Publish Date 2018-02-22
Rating 4.08/5 Total 12 Ratings
Developer https://adrienjoly.com
Email [email protected]
Payment Type free
Extension Website https://github.com/adrienjoly/chrome-inbox-permalinks
Supported Languages 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
}