Feedly Open All Unread
Adds a button to feedly.com to open all unread articles in new tabs
Co to jest Feedly Open All Unread?
Feedly Open All Unread to rozszerzenie Chrome opracowane przez Unknown, a jego główną funkcją jest „Adds a button to feedly.com to open all unread articles in new tabs”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Feedly Open All Unread
Pobierz pliki rozszerzeń Feedly Open All Unread 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
Adds a button to feedly.com to open all unread articles in new tabs Podstawowe informacje o rozszerzeniu
| Nazwa | |
| ID | blmhlkddebpmcjihpgbnhiinjfibekkf |
| Oficjalny URL | https://chromewebstore.google.com/detail/feedly-open-all-unread/blmhlkddebpmcjihpgbnhiinjfibekkf |
| Opis | Adds a button to feedly.com to open all unread articles in new tabs |
| Rozmiar pliku | 8.03 KB |
| Liczba instalacji | 15 |
| Aktualna Wersja | 1.3 |
| Ostatnia Aktualizacja | 2019-01-01 |
| Data Publikacji | 2019-01-01 |
| Ocena | 1.00/5 Łącznie 1 Oceny |
| Deweloper | Unknown |
| Typ Płatności | free |
| Adres URL Strony Pomocy | https://github.com/cypressious/ff-feedly-open-unread |
| Obsługiwane Języki | en-US |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "Feedly Open All Unread",
"version": "1.3",
"description": "Adds a button to feedly.com to open all unread articles in new tabs",
"homepage_url": "https:\/\/github.com\/cypressious\/ff-feedly-open-unread",
"content_scripts": [
{
"matches": [
"*:\/\/feedly.com\/*"
],
"js": [
"browser-polyfill.min.js",
"content-script.js"
]
}
],
"background": {
"scripts": [
"browser-polyfill.min.js",
"background.js"
]
},
"options_ui": {
"page": "options.html"
},
"permissions": [
"storage"
]
} | |