Bookmark Tweet to Browser
Bookmark tweet to browser bookmark directly from timeline using embedded button.
What is Bookmark Tweet to Browser?
Bookmark Tweet to Browser is a Chrome extension developed by redhoyasa, and its main feature is "Bookmark tweet to browser bookmark directly from timeline using embedded button.".
Extension Screenshots
Download Bookmark Tweet to Browser Extension CRX File
Download Bookmark Tweet to Browser 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
Twitter has bookmark feature, but we cannot organize the bookmarked tweets. Alternatively, we could bookmark tweet to the browser bookmark directly and organize it, but we need to open the individual tweet into new tab before bookmarking the tweet. This extension provides shortcut to bookmark tweet directly from timeline using embedded button in tweet. Feature: - Add tweet to browser bookmark (will be added to Other Bookmarks folder in Chrome) - Remove bookmarked tweet from browser bookmark
Extension Basic Information
Name | |
ID | fcohgfilngajddgokkckbpfkpmojoejf |
Official URL | https://chromewebstore.google.com/detail/bookmark-tweet-to-browser/fcohgfilngajddgokkckbpfkpmojoejf |
Description | Bookmark tweet to browser bookmark directly from timeline using embedded button. |
File Size | 42.12 KB |
Installation Count | 75 |
Current Version | 0.1.0 |
Last Updated | 2019-10-31 |
Publish Date | 2019-10-31 |
Rating | 5.00/5 Total 2 Ratings |
Developer | redhoyasa |
[email protected] | |
Payment Type | free |
Supported Languages | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Bookmark Tweet to Browser", "version": "0.1.0", "short_name": "Bookmark Tweet to Browser", "description": "Bookmark tweet to browser bookmark directly from timeline using embedded button.", "permissions": [ "activeTab", "declarativeContent", "storage", "bookmarks" ], "background": { "scripts": [ "dist\/background.js" ], "persistent": false }, "content_scripts": [ { "run_at": "document_idle", "matches": [ "*:\/\/*.twitter.com\/*" ], "css": [ "dist\/css\/styles.css" ], "js": [ "dist\/content.js" ] } ], "icons": { "16": "app\/images\/icon16.png", "48": "app\/images\/icon48.png", "128": "app\/images\/icon128.png" }, "manifest_version": 2, "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'" } |