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开发的Chrome扩展程序,该扩展的主要功能是“Say goodbye to millions of open chrome windows that clutter your screen and slow your machine! A tab manager for the power user.”。

扩展截图

screenshot
screenshot
screenshot

下载Bookmarker扩展crx文件

下载Bookmarker扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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                    

扩展基本信息

名称 Bookmarker Bookmarker
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"
        }
    }
}