Feedly Background Tab
Open Feedly Links in Background Tab using shortcut key
O que é Feedly Background Tab?
Feedly Background Tab é uma extensão do Chrome desenvolvida por Aaron Saray, e sua principal característica é "Open Feedly Links in Background Tab using shortcut key".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Feedly Background Tab
Baixe arquivos de extensão Feedly Background Tab no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
Are you a power user of Feedly - but just wish the 'v' key would open tabs in the background? This extension is for you! Now, when you are viewing articles in list view, press ';' and the new tab opens in the background. Or, if you'd like, customize your shortcut key in the options. Now supports Cloudly, including PRO!
Informações Básicas da Extensão
Nome | Feedly Background Tab |
ID | gjlijkhcebalcchkhgaiflaooghmoegk |
URL Oficial | https://chromewebstore.google.com/detail/feedly-background-tab/gjlijkhcebalcchkhgaiflaooghmoegk |
Descrição | Open Feedly Links in Background Tab using shortcut key |
Tamanho do Arquivo | 15.99 KB |
Contagem de Instalações | 4,009 |
Versão Atual | 0.13 |
Última Atualização | 2017-08-11 |
Data de Publicação | 2017-08-11 |
Classificação | 3.96/5 Total de 79 Avaliações |
Desenvolvedor | Aaron Saray |
[email protected] | |
Tipo de Pagamento | free |
Site da Extensão | https://github.com/aaronsaray/feedlybackgroundtab |
URL da Página de Ajuda | https://github.com/aaronsaray/feedlybackgroundtab |
Idiomas Suportados | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Feedly Background Tab", "version": "0.13", "manifest_version": 2, "description": "Open Feedly Links in Background Tab using shortcut key", "content_scripts": [ { "matches": [ "*:\/\/*.feedly.com\/*" ], "js": [ "js\/keypress.js" ] } ], "background": { "scripts": [ "js\/background.js" ] }, "options_page": "options.html", "permissions": [ "http:\/\/www.feedly.com\/*", "http:\/\/cloud.feedly.com\/*", "https:\/\/cloud.feedly.com\/*", "storage" ], "minimum_chrome_version": "21", "icons": { "128": "images\/icon_128.png" } } |