Feedly Background Tab Open
Open Feedly Links in Background Tab using shortcut key
Feedly Background Tab Open क्या है?
Feedly Background Tab Open k-yogo द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Open Feedly Links in Background Tab using shortcut key"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Feedly Background Tab Open एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
In the default Feedly (feedly.com, an RSS Reader Service), article links open in a separate tab when using the "v" shortcut key. However, this does not open the link in the background. With this extension, you can open article links in a separate background tab using the new custom shortcut key. In the version 1.0, it is now possible to customize shortcut key configurations. If you like the extension please support the developer (donation link is put).
एक्सटेंशन की मूल जानकारी
नाम | Feedly Background Tab Open |
ID | knekhffbanfpccociahfjklboipfkecm |
आधिकारिक URL | https://chromewebstore.google.com/detail/feedly-background-tab-ope/knekhffbanfpccociahfjklboipfkecm |
विवरण | Open Feedly Links in Background Tab using shortcut key |
फ़ाइल का आकार | 13.95 KB |
स्थापना संख्या | 98 |
वर्तमान संस्करण | 1.24 |
अंतिम अपडेट | 2023-05-25 |
प्रकाशन तिथि | 2023-03-28 |
रेटिंग | 4.50/5 कुल 2 रेटिंग्स |
डेवलपर | k-yogo |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
एक्सटेंशन वेबसाइट | https://github.com/k-yogo/feedly-background-tab-open |
सहायता पृष्ठ URL | https://github.com/k-yogo/feedly-background-tab-open |
समर्थित भाषाएँ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Feedly Background Tab Open", "description": "Open Feedly Links in Background Tab using shortcut key", "version": "1.24", "manifest_version": 3, "icons": { "16": "icon16.png", "48": "icon48.png", "128": "icon128.png" }, "action": { "default_popup": "popup.html", "default_icon": "128.png" }, "options_ui": { "page": "options.html", "open_in_tab": false }, "background": { "service_worker": "background.js" }, "content_scripts": [ { "matches": [ "*:\/\/*.feedly.com\/*" ], "run_at": "document_idle", "js": [ "content.js" ], "all_frames": true } ], "permissions": [ "storage" ] } |