Permalinks for Google Inbox
Provides direct URLs to your emails, from Google Inbox.
Was ist Permalinks for Google Inbox?
Permalinks for Google Inbox ist eine Chrome-Erweiterung, die von https://adrienjoly.com entwickelt wurde, und ihr Hauptmerkmal ist "Provides direct URLs to your emails, from Google Inbox.".
Erweiterungsscreenshots
Permalinks for Google Inbox-Erweiterungs-CRX-Datei herunterladen
Laden Sie Permalinks for Google Inbox-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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 Grundlegende Informationen zur Erweiterung
| Name | |
| ID | eijfpfnadnijllpfdkdikfamdijafala |
| Offizielle URL | https://chromewebstore.google.com/detail/permalinks-for-google-inb/eijfpfnadnijllpfdkdikfamdijafala |
| Beschreibung | Provides direct URLs to your emails, from Google Inbox. |
| Dateigröße | 26.61 KB |
| Installationsanzahl | 186 |
| Aktuelle Version | 0.7 |
| Letztes Update | 2018-02-22 |
| Veröffentlichungsdatum | 2018-02-22 |
| Bewertung | 4.08/5 Insgesamt 12 Bewertungen |
| Entwickler | https://adrienjoly.com |
| [email protected] | |
| Zahlungsart | free |
| Erweiterungswebsite | https://github.com/adrienjoly/chrome-inbox-permalinks |
| Unterstützte Sprachen | 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
} | |