Feedly Background Tab
Open Feedly Links in Background Tab using shortcut key
Co to jest Feedly Background Tab?
Feedly Background Tab to rozszerzenie Chrome opracowane przez Aaron Saray, a jego główną funkcją jest „Open Feedly Links in Background Tab using shortcut key”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Feedly Background Tab
Pobierz pliki rozszerzeń Feedly Background Tab w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
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! Podstawowe informacje o rozszerzeniu
| Nazwa | |
| ID | gjlijkhcebalcchkhgaiflaooghmoegk |
| Oficjalny URL | https://chromewebstore.google.com/detail/feedly-background-tab/gjlijkhcebalcchkhgaiflaooghmoegk |
| Opis | Open Feedly Links in Background Tab using shortcut key |
| Rozmiar pliku | 15.99 KB |
| Liczba instalacji | 4,009 |
| Aktualna Wersja | 0.13 |
| Ostatnia Aktualizacja | 2017-08-11 |
| Data Publikacji | 2017-08-11 |
| Ocena | 3.96/5 Łącznie 79 Oceny |
| Deweloper | Aaron Saray |
| [email protected] | |
| Typ Płatności | free |
| Strona Rozszerzenia | https://github.com/aaronsaray/feedlybackgroundtab |
| Adres URL Strony Pomocy | https://github.com/aaronsaray/feedlybackgroundtab |
| Obsługiwane Języki | 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"
}
} | |