Briefkasten Bookmarks
Companion extension for the Briefkasten bookmark app.
Briefkasten Bookmarks क्या है?
Briefkasten Bookmarks https://ndo.dev द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Companion extension for the Briefkasten bookmark app."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Briefkasten Bookmarks एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
This is an extension for saving items to your Briefkasten bookmarks collection. By default, it will auto-fill the page title, description, etc. from your currently active tab. Of course, you can overwrite any of these fields before hitting "Save" and committing it to your collection. Note: This extension is useless without a Briefkasten (https://briefkasten.vercel.app) account!
एक्सटेंशन की मूल जानकारी
नाम | Briefkasten Bookmarks |
ID | aighkhofochfjejmhjfkgjfpkpgmjlnd |
आधिकारिक URL | https://chromewebstore.google.com/detail/briefkasten-bookmarks/aighkhofochfjejmhjfkgjfpkpgmjlnd |
विवरण | Companion extension for the Briefkasten bookmark app. |
फ़ाइल का आकार | 35.84 KB |
स्थापना संख्या | 244 |
वर्तमान संस्करण | 0.5.2 |
अंतिम अपडेट | 2022-07-09 |
प्रकाशन तिथि | 2022-05-31 |
रेटिंग | 5.00/5 कुल 1 रेटिंग्स |
डेवलपर | https://ndo.dev |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
एक्सटेंशन वेबसाइट | https://github.com/ndom91/briefkasten-extension |
सहायता पृष्ठ URL | https://github.com/ndom91/briefkasten-extension/issues/new |
समर्थित भाषाएँ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Briefkasten Bookmarks", "version": "0.5.2", "description": "Companion extension for the Briefkasten bookmark app.", "homepage_url": "https:\/\/github.com\/ndom91\/briefkasten-extension\/", "icons": { "16": "src\/icons\/logo-16x16.png", "48": "src\/icons\/logo-48x48.png", "96": "src\/icons\/logo-96x96.png", "128": "src\/icons\/logo-128x128.png" }, "background": { "service_worker": "background.js", "type": "module" }, "omnibox": { "keyword": "bk" }, "action": { "default_icon": { "16": "src\/icons\/logo-16x16.png", "19": "src\/icons\/logo-19x19.png", "32": "src\/icons\/logo-32x32.png", "38": "src\/icons\/logo-38x38.png" }, "default_title": "Add bookmark (Alt+Shift+L)", "default_popup": "src\/popup\/index.html" }, "commands": { "_execute_action": { "suggested_key": { "default": "Ctrl+Shift+K", "windows": "Ctrl+Shift+K", "linux": "Ctrl+Shift+K" }, "description": "Open a popup to bookmark current page." } }, "options_ui": { "page": "src\/options\/index.html" }, "permissions": [ "storage", "background" ], "host_permissions": [ "http:\/\/*\/*", "https:\/\/*\/*" ] } |