Permalinks for Google Inbox
Provides direct URLs to your emails, from Google Inbox.
Wat is Permalinks for Google Inbox?
Permalinks for Google Inbox is een Chrome-extensie ontwikkeld door https://adrienjoly.com, en de belangrijkste functie is "Provides direct URLs to your emails, from Google Inbox.".
Extensie Screenshots
Download het CRX-bestand van de extensie Permalinks for Google Inbox
Download Permalinks for Google Inbox-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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
Basisinformatie over de Extensie
Naam | Permalinks for Google Inbox |
ID | eijfpfnadnijllpfdkdikfamdijafala |
Officiële URL | https://chromewebstore.google.com/detail/permalinks-for-google-inb/eijfpfnadnijllpfdkdikfamdijafala |
Beschrijving | Provides direct URLs to your emails, from Google Inbox. |
Bestandsgrootte | 26.61 KB |
Aantal Installaties | 186 |
Huidige Versie | 0.7 |
Laatst Bijgewerkt | 2018-02-22 |
Publicatiedatum | 2018-02-22 |
Beoordeling | 4.08/5 Totaal 12 Beoordelingen |
Ontwikkelaar | https://adrienjoly.com |
[email protected] | |
Betalingswijze | free |
Extensiewebsite | https://github.com/adrienjoly/chrome-inbox-permalinks |
Ondersteunde Talen | 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 } |