TumblrSkipper
Skips the sidebar for you when you click a Tumblelog on your Dashboard
Cos'è TumblrSkipper?
TumblrSkipper è un'estensione di Chrome sviluppata da jessica.summer.smith, e la sua funzione principale è "Skips the sidebar for you when you click a Tumblelog on your Dashboard".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione TumblrSkipper
Scarica i file di estensione TumblrSkipper 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
On the Tumblr dashboard, clicking a blog link used to take you to that blog. Now, it takes you to a weird sidebar to preview the blog instead.
This extension restores the native link functionality to the Tumblr dashboard. Informazioni di Base sull'Estensione
| Nome | |
| ID | cofjhhfhgfpdglobncjkfdmmpdkmfgdc |
| URL Ufficiale | https://chrome.google.com/webstore/detail/tumblrskipper/cofjhhfhgfpdglobncjkfdmmpdkmfgdc |
| Descrizione | Skips the sidebar for you when you click a Tumblelog on your Dashboard |
| Dimensione del File | 40.95 KB |
| Conteggio Installazioni | 186 |
| Versione Corrente | 0.2 |
| Ultimo Aggiornamento | 2016-01-12 |
| Data di Pubblicazione | 2016-01-12 |
| Valutazione | 4.50/5 Totale 2 Valutazioni |
| Sviluppatore | jessica.summer.smith |
| Tipo di Pagamento | free |
| Lingue Supportate | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "TumblrSkipper",
"version": "0.2",
"description": "Skips the sidebar for you when you click a Tumblelog on your Dashboard",
"browser_action": {
"default_icon": "TS.png",
"default_title": "TumblrSkipper"
},
"content_scripts": [
{
"matches": [
"https:\/\/www.tumblr.com\/*"
],
"js": [
"jquery.min.js",
"content.js"
]
}
],
"permissions": [
"tabs",
"webNavigation",
"https:\/\/www.tumblr.com\/*"
]
} | |