Bookmarker
Say goodbye to millions of open chrome windows that clutter your screen and slow your machine! A tab manager for the power user.
Bookmarker क्या है?
Bookmarker bookmarker extension द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Say goodbye to millions of open chrome windows that clutter your screen and slow your machine! A tab manager for the power user."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Bookmarker एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
Say goodbye to millions of open chrome windows that clutter your screen and slow your machine! A tab manager for the power user. We're looking for feedback! Shoot us a response here! https://goo.gl/forms/AxniAdIRad9EZg2Y2
एक्सटेंशन की मूल जानकारी
नाम | |
ID | glhpfpaemdkplbllfmkbigklacjneoba |
आधिकारिक URL | https://chrome.google.com/webstore/detail/bookmarker/glhpfpaemdkplbllfmkbigklacjneoba |
विवरण | Say goodbye to millions of open chrome windows that clutter your screen and slow your machine! A tab manager for the power user. |
फ़ाइल का आकार | 962 KB |
स्थापना संख्या | 36 |
वर्तमान संस्करण | 1.2.1 |
अंतिम अपडेट | 2019-02-24 |
प्रकाशन तिथि | 2019-02-24 |
रेटिंग | 3.50/5 कुल 4 रेटिंग्स |
डेवलपर | bookmarker extension |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
एक्सटेंशन वेबसाइट | https://github.com/nami634/Bookmarker |
सहायता पृष्ठ URL | https://github.com/nami634/Bookmarker/issues |
समर्थित भाषाएँ | en,ja |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Bookmarker", "short_name": "Bookmarker", "description": "Say goodbye to millions of open chrome windows that clutter your screen and slow your machine! A tab manager for the power user.", "version": "1.2.1", "manifest_version": 2, "default_locale": "en", "icons": { "16": "icons\/icon-16.png", "48": "icons\/icon-48.png", "128": "icons\/icon-128.png" }, "background": { "scripts": [ "scripts\/background.js" ], "persistent": false }, "browser_action": { "default_icon": { "19": "icons\/icon-19.png", "38": "icons\/icon-38.png" }, "default_title": "Bookmarker", "default_popup": "pages\/popup.html" }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "scripts\/content.js" ], "run_at": "document_end" } ], "options_page": "pages\/options.html", "options_ui": { "page": "pages\/options.html", "chrome_style": true }, "permissions": [ "tabs", "bookmarks", "activeTab", "storage", "management", "chrome:\/\/favicon\/" ], "commands": { "_execute_browser_action": { "global": false, "suggested_key": [ { "default": "Ctrl+D", "windows": "Ctrl+D", "mac": "Command+D" } ] }, "delete_bookmark": { "suggested_key": { "default": "Ctrl+I", "mac": "Command+I" }, "description": "\u30d6\u30c3\u30af\u30de\u30fc\u30af\u306e\u524a\u9664" } } } |