Twitter Direct Links
Makes links in twitter feed direct.
Co je Twitter Direct Links?
Twitter Direct Links je rozšíření Chrome vyvinuté philatov, a jeho hlavní funkcí je „Makes links in twitter feed direct.“.
Snímky obrazovky rozšíření
Stáhnout soubor CRX rozšíření Twitter Direct Links
Stáhněte si soubory rozšíření Twitter Direct Links ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.
Pokyny pro Použití Rozšíření
This extension may be useful when you have a difficulties with t.co link shortener. Extension is just replaces link with direct one.
Základní Informace o Rozšíření
Název | Twitter Direct Links |
ID | chgdginonhphdfgpbhcnhmmglobclkie |
Oficiální URL | https://chromewebstore.google.com/detail/twitter-direct-links/chgdginonhphdfgpbhcnhmmglobclkie |
Popis | Makes links in twitter feed direct. |
Velikost souboru | 45.09 KB |
Počet instalací | 38 |
Aktuální Verze | 1.0.1 |
Poslední Aktualizace | 2014-04-19 |
Datum Vydání | 2014-04-19 |
Hodnocení | 3.75/5 Celkem 4 Hodnocení |
Vývojář | philatov |
Typ Platby | free |
Podporované Jazyky | 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" } } } |