Twitter Direct Links
Makes links in twitter feed direct.
What is Twitter Direct Links?
Twitter Direct Links is a Chrome extension developed by philatov, and its main feature is "Makes links in twitter feed direct.".
Extension Screenshots
Download Twitter Direct Links Extension CRX File
Download Twitter Direct Links 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
This extension may be useful when you have a difficulties with t.co link shortener. Extension is just replaces link with direct one.
Extension Basic Information
Name | Twitter Direct Links |
ID | chgdginonhphdfgpbhcnhmmglobclkie |
Official URL | https://chromewebstore.google.com/detail/twitter-direct-links/chgdginonhphdfgpbhcnhmmglobclkie |
Description | Makes links in twitter feed direct. |
File Size | 45.09 KB |
Installation Count | 38 |
Current Version | 1.0.1 |
Last Updated | 2014-04-19 |
Publish Date | 2014-04-19 |
Rating | 3.75/5 Total 4 Ratings |
Developer | philatov |
Payment Type | free |
Supported Languages | en,ru |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "version": "1.0.1", "name": "__MSG_appName__", "description": "__MSG_appDesc__", "default_locale": "en", "background": { "scripts": [ "background.js" ] }, "icons": { "16": "icon-16.png", "32": "icon-32.png", "64": "icon-64.png", "128": "icon-128.png" }, "content_scripts": [ { "matches": [ "http:\/\/*.twitter.com\/*", "https:\/\/*.twitter.com\/*" ], "js": [ "jquery-2.1.0.min.js", "contentscript.js" ] } ], "permissions": [ "tabs", "http:\/\/*.twitter.com\/", "https:\/\/*.twitter.com\/" ], "page_action": { "default_title": "Twitter Direct Links", "default_icon": { "19": "icon-19.png", "38": "icon-38.png" } } } |