Gmail Floating Subject
Make email's subject float on scroll
What is Gmail Floating Subject?
Gmail Floating Subject is a Chrome extension developed by Assaf Shahaf, and its main feature is "Make email's subject float on scroll".
Extension Screenshots
Download Gmail Floating Subject Extension CRX File
Download Gmail Floating Subject 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
Make the subject of an email float on top of the email upon scroll. See screenshot in order to review the script for security reasons.
Extension Basic Information
Name | |
ID | phjkbhcdnomlkfcbcebgbjnfcndfadfh |
Official URL | https://chrome.google.com/webstore/detail/gmail-floating-subject/phjkbhcdnomlkfcbcebgbjnfcndfadfh |
Description | Make email's subject float on scroll |
File Size | 64.94 KB |
Installation Count | 45 |
Current Version | 0.0.0.12 |
Last Updated | 2015-10-04 |
Publish Date | 2015-10-04 |
Rating | 5.00/5 Total 1 Ratings |
Developer | Assaf Shahaf |
Payment Type | free |
Supported Languages | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Gmail Floating Subject", "version": "0.0.0.12", "manifest_version": 2, "description": "Make email's subject float on scroll", "icons": { "16": "icon.png", "48": "icon.png", "128": "icon.png" }, "content_scripts": [ { "js": [ "jquery.js", "contentscript.js" ], "run_at": "document_end", "all_frames": true, "matches": [ "https:\/\/mail.google.com\/*" ] } ], "web_accessible_resources": [ "jquery.js", "icon.png", "script.js" ] } |