Feedly Star Opener
Open feedly saved items in background tab
Qu'est-ce que Feedly Star Opener ?
Feedly Star Opener est une extension Chrome développée par softantenna, et sa fonction principale est "Open feedly saved items in background tab".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Feedly Star Opener
Téléchargez les fichiers d'extension Feedly Star Opener au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
This is a Chrome extension that opens all items saved (Read Later) in Feedly at once in the background. Pressing the "w" key in the Read Later view will open 8 articles at once by default. Please select "Title-Only View" in the Read Later view. Other views are not supported. Feedlyで保存(Read Later)したアイテムをバックグラウンドで一気に開くChrome拡張です。 気になる記事を保存しておき、まとめて後から確認したい場合に便利です。Read Laterビューで"w"キーを押すとデフォルトで8個の記事をまとめて開く事ができます。 ※Read Laterビューでは「Title-Only View」を選択してください。それ以外の表示方法には対応していません。
Informations de Base sur l'Extension
Nom | Feedly Star Opener |
ID | hecknmjndpndohooejpacafgliphbbop |
URL Officiel | https://chromewebstore.google.com/detail/feedly-star-opener/hecknmjndpndohooejpacafgliphbbop |
Description | Open feedly saved items in background tab |
Taille du Fichier | 51.35 KB |
Nombre d'Installations | 53 |
Version Actuelle | 3.3 |
Dernière Mise à Jour | 2023-12-03 |
Date de Publication | 2018-03-22 |
Évaluation | 5.00/5 Total 3 Évaluations |
Développeur | softantenna |
[email protected] | |
Type de Paiement | free |
Langues Prises en Charge | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Feedly Star Opener", "version": "3.3", "description": "Open feedly saved items in background tab", "content_scripts": [ { "matches": [ "http:\/\/feedly.com\/*", "https:\/\/feedly.com\/*" ], "js": [ "js\/contentscripts.js" ] } ], "options_page": "html\/options.html", "background": { "service_worker": "background.js" }, "permissions": [ "storage" ], "host_permissions": [ "http:\/\/feedly.com\/*", "https:\/\/feedly.com\/*" ], "icons": { "16": "img\/fav2_16.png", "48": "img\/fav2_48.png", "128": "img\/fav2_128.png" } } |