Feedly tabs
Open Feedly articles in new tabs
Cos'è Feedly tabs?
Feedly tabs è un'estensione di Chrome sviluppata da Peter Leitzen, e la sua funzione principale è "Open Feedly articles in new tabs".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Feedly tabs
Scarica i file di estensione Feedly tabs 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
See https://github.com/splattael/chrome-feedly-tabs for source.
== Changes
Version 0.4.0
* Inject green "TABS" button into feedly.com as an alternative to pageAction
Version 0.3.1
* Fix message passing for newer Chrome versions.
Version 0.3.0
* Require permission for Feedly's https version.
Version 0.2.0
* Use pageAction instead of browserAction.
Version 0.1.0
* Feedly changed URL to cloud.feedly.com. Please upgrade!
* Added some icons. Informazioni di Base sull'Estensione
| Nome | |
| ID | bbknmbmpegpkeamflgefmekmjjhgddhk |
| URL Ufficiale | https://chromewebstore.google.com/detail/feedly-tabs/bbknmbmpegpkeamflgefmekmjjhgddhk |
| Descrizione | Open Feedly articles in new tabs |
| Dimensione del File | 57.75 KB |
| Conteggio Installazioni | 104 |
| Versione Corrente | 0.4.0 |
| Ultimo Aggiornamento | 2017-08-10 |
| Data di Pubblicazione | 2017-08-10 |
| Valutazione | 3.75/5 Totale 4 Valutazioni |
| Sviluppatore | Peter Leitzen |
| [email protected] | |
| Tipo di Pagamento | free |
| Lingue Supportate | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "Feedly tabs",
"description": "Open Feedly articles in new tabs",
"icons": {
"16": "images\/icon16.png",
"48": "images\/icon48.png",
"128": "images\/icon128.png"
},
"version": "0.4.0",
"permissions": [
"tabs",
"http:\/\/*.feedly.com\/home*",
"https:\/\/*.feedly.com\/home*"
],
"page_action": {
"default_icon": {
"19": "images\/icon19.png",
"38": "images\/icon38.png"
},
"default_title": "Open Feedly articles in new tabs"
},
"content_scripts": [
{
"matches": [
"https:\/\/feedly.com\/*"
],
"js": [
"js\/inject_action_button.js"
]
}
],
"background": {
"scripts": [
"js\/background.js"
]
}
} | |