Their Medium
Find your favorite Twitter users on Medium.
Cos'è Their Medium?
Their Medium è un'estensione di Chrome sviluppata da http://96problems.com, e la sua funzione principale è "Find your favorite Twitter users on Medium.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Their Medium
Scarica i file di estensione Their Medium 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
Their Medium let’s you easily see which Twitter users are on Medium just by glancing at their profile. No need to search Medium to see what the people you follow are writing. Jump straight to Medium from their profile. Informazioni di Base sull'Estensione
| Nome | |
| ID | bbfdmbppdeibcpndigonmkmjhpigeoep |
| URL Ufficiale | https://chrome.google.com/webstore/detail/their-medium/bbfdmbppdeibcpndigonmkmjhpigeoep |
| Descrizione | Find your favorite Twitter users on Medium. |
| Dimensione del File | 40.19 KB |
| Conteggio Installazioni | 39 |
| Versione Corrente | 1.1.1 |
| Ultimo Aggiornamento | 2015-09-25 |
| Data di Pubblicazione | 2015-09-25 |
| Valutazione | 5.00/5 Totale 1 Valutazioni |
| Sviluppatore | http://96problems.com |
| Tipo di Pagamento | free |
| Sito Web dell'Estensione | http://96problems.com/first-draft |
| Lingue Supportate | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Their Medium",
"description": "Find your favorite Twitter users on Medium.",
"version": "1.1.1",
"permissions": [
"https:\/\/twitter.com\/*",
"https:\/\/medium.com\/@*",
"*:\/\/*\/*",
"tabs"
],
"icons": {
"16": "img\/icon16.png",
"48": "img\/icon48.png",
"128": "img\/icon128.png"
},
"background": {
"scripts": [
"js\/jquery-2.1.4.min.js",
"js\/background.js"
],
"persistent": true
},
"content_scripts": [
{
"run_at": "document_end",
"matches": [
"https:\/\/twitter.com\/*"
],
"js": [
"js\/jquery-2.1.4.min.js",
"js\/run.js"
],
"css": [
"style.css"
]
},
{
"matches": [
"http:\/\/www.96problems.com\/their-medium\/"
],
"js": [
"js\/installCheck.js"
],
"run_at": "document_end"
}
],
"web_accessible_resources": [
"img\/Medium-logo-dark100.png",
"img\/medium-small.png"
],
"manifest_version": 2
} | |