ayaya's Bookmark Tree
Provides a button to show bookmark tree and open bookmark in new tab.
ayaya's Bookmark Tree क्या है?
ayaya's Bookmark Tree ayaya द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Provides a button to show bookmark tree and open bookmark in new tab."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में ayaya's Bookmark Tree एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
Provides a button to show bookmark tree and open bookmark in new tab. Have options to add custom styles, modify click behaviors (for example, right click to open in new window instead of in new tab), set the root directory, etc. This is the first extension I made. I make this just because I don't like always show bookmark bar. v0.14.2 Fix "Open in background tab" behavior. v0.14.1 Remove tabs permission. v0.14.0 Fix popup display issue. Source code: https://github.com/ayamomiji/bookmark-tree
एक्सटेंशन की मूल जानकारी
नाम | ayaya's Bookmark Tree |
ID | dneehabidhbfdiohdhbhjbbljobchgab |
आधिकारिक URL | https://chromewebstore.google.com/detail/ayayas-bookmark-tree/dneehabidhbfdiohdhbhjbbljobchgab |
विवरण | Provides a button to show bookmark tree and open bookmark in new tab. |
फ़ाइल का आकार | 33.59 KB |
स्थापना संख्या | 4,776 |
वर्तमान संस्करण | 0.14.2 |
अंतिम अपडेट | 2023-07-18 |
प्रकाशन तिथि | 2019-12-24 |
रेटिंग | 4.55/5 कुल 411 रेटिंग्स |
डेवलपर | ayaya |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
एक्सटेंशन वेबसाइट | https://github.com/ayamomiji/bookmark-tree |
सहायता पृष्ठ URL | https://github.com/ayamomiji/bookmark-tree/wiki/FAQ |
समर्थित भाषाएँ | en,zh-CN,zh-TW |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "description": "__MSG_description__", "version": "0.14.2", "name": "__MSG_bookmarkTree__", "default_locale": "en", "options_page": "options.html", "background": { "page": "background.html" }, "browser_action": { "default_popup": "popup.html", "default_icon": "icon.png" }, "icons": { "128": "icon.png" }, "manifest_version": 2, "permissions": [ "chrome:\/\/favicon\/", "bookmarks" ], "commands": { "openBookmarkTreeInNewTab": { "description": "__MSG_openBookmarkTreeInNewTab__", "suggested_key": { "default": "Alt+B", "mac": "Command+B" } }, "openBookmarkTreeInNewWindow": { "description": "__MSG_openBookmarkTreeInNewWindow__", "suggested_key": { "default": "Alt+K", "mac": "Command+K" } } }, "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'" } |