Tiny Bookmarks
A popup that will display all your bookmarks (and let you filter them) so you can get rid of the top bar.
Tiny Bookmarks क्या है?
Tiny Bookmarks schouffy द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "A popup that will display all your bookmarks (and let you filter them) so you can get rid of the top bar."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Tiny Bookmarks एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
Displays all your bookmarks in a treeview. Lets you hide the bookmarks bar so you have more vertical screen space for the websites. Features : - Search - Remove Icon by https://www.iconfinder.com/SPETS Source code https://github.com/schouffy/bookmarks-chrome-extension
एक्सटेंशन की मूल जानकारी
नाम | Tiny Bookmarks |
ID | iegcdellenlkefldcoligpmfnnejcekj |
आधिकारिक URL | https://chromewebstore.google.com/detail/tiny-bookmarks/iegcdellenlkefldcoligpmfnnejcekj |
विवरण | A popup that will display all your bookmarks (and let you filter them) so you can get rid of the top bar. |
फ़ाइल का आकार | 191 KB |
स्थापना संख्या | 39 |
वर्तमान संस्करण | 0.3 |
अंतिम अपडेट | 2020-04-07 |
प्रकाशन तिथि | 2020-04-07 |
रेटिंग | 3.00/5 कुल 2 रेटिंग्स |
डेवलपर | schouffy |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
समर्थित भाषाएँ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Tiny Bookmarks", "version": "0.3", "description": "A popup that will display all your bookmarks (and let you filter them) so you can get rid of the top bar.", "permissions": [ "bookmarks", "tabs", "chrome:\/\/favicon\/" ], "browser_action": { "default_title": "Tiny Bookmarks", "default_popup": "index.html", "default_icon": { "16": "star_16.png", "32": "star_32.png", "48": "star_48.png", "128": "star_128.png" } }, "icons": { "16": "star_16.png", "32": "star_32.png", "48": "star_48.png", "128": "star_128.png" }, "commands": { "_execute_browser_action": { "suggested_key": { "windows": "Ctrl+Comma", "mac": "Command+Comma", "chromeos": "Ctrl+Comma", "linux": "Ctrl+Comma" } } }, "manifest_version": 2, "content_security_policy": "script-src 'self' 'sha256-GgRxrVOKNdB4LrRsVPDSbzvfdV4UqglmviH9GoBJ5jk='; object-src 'self'" } |