Twitter Direct Links
Makes links in twitter feed direct.
Cos'è Twitter Direct Links?
Twitter Direct Links è un'estensione di Chrome sviluppata da philatov, e la sua funzione principale è "Makes links in twitter feed direct.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Twitter Direct Links
Scarica i file di estensione Twitter Direct Links in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
This extension may be useful when you have a difficulties with t.co link shortener. Extension is just replaces link with direct one. Informazioni di Base sull'Estensione
| Nome | |
| ID | chgdginonhphdfgpbhcnhmmglobclkie |
| URL Ufficiale | https://chromewebstore.google.com/detail/twitter-direct-links/chgdginonhphdfgpbhcnhmmglobclkie |
| Descrizione | Makes links in twitter feed direct. |
| Dimensione del File | 45.09 KB |
| Conteggio Installazioni | 38 |
| Versione Corrente | 1.0.1 |
| Ultimo Aggiornamento | 2014-04-19 |
| Data di Pubblicazione | 2014-04-19 |
| Valutazione | 3.75/5 Totale 4 Valutazioni |
| Sviluppatore | philatov |
| Tipo di Pagamento | free |
| Lingue Supportate | 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"
}
}
} | |