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.」です。
拡張機能のスクリーンショット
Permalinks for Google Inbox拡張機能のCRXファイルをダウンロード
Permalinks for Google Inbox拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
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 |
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 |
Eメール | [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 } |