Tweet Grabber
This extension allows you to copy tweets to your clipboard.
What is Tweet Grabber?
Tweet Grabber is a Chrome extension developed by Unknown, and its main feature is "This extension allows you to copy tweets to your clipboard.".
Download Tweet Grabber Extension CRX File
Download Tweet Grabber 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
Adds a button to the Twitter UI to copy a tweet to your clipboard as HTML.
Extension Basic Information
Name | Tweet Grabber |
ID | jfkhmnmpppgaempelmhbicaelhnclkjc |
Official URL | https://chromewebstore.google.com/detail/tweet-grabber/jfkhmnmpppgaempelmhbicaelhnclkjc |
Description | This extension allows you to copy tweets to your clipboard. |
File Size | 196 KB |
Installation Count | 40 |
Current Version | 1.0 |
Last Updated | 2017-12-04 |
Publish Date | 2017-12-04 |
Developer | Unknown |
Payment Type | free |
Supported Languages | en-GB |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Tweet Grabber", "description": "This extension allows you to copy tweets to your clipboard.", "version": "1.0", "icons": { "16": "icon.png", "48": "icon48.png", "128": "icon128.png" }, "browser_action": { "default_icon": "icon.png" }, "permissions": [ "activeTab", "storage" ], "content_scripts": [ { "matches": [ "http:\/\/twitter.com\/*", "https:\/\/twitter.com\/*" ], "js": [ "jquery-2.1.4.min.js", "tweet-grabber.js" ], "css": [ "tweet-grabber.css" ] } ] } |