Bookmarker

Say goodbye to millions of open chrome windows that clutter your screen and slow your machine! A tab manager for the power user.

¿Qué es Bookmarker?

Bookmarker es una extensión de Chrome desarrollada por bookmarker extension, y su función principal es "Say goodbye to millions of open chrome windows that clutter your screen and slow your machine! A tab manager for the power user.".

Capturas de Pantalla de la Extensión

screenshot
screenshot
screenshot

Descargar Archivo CRX de la Extensión Bookmarker

Descarga archivos de extensión Bookmarker en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        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                    

Información Básica de la Extensión

Nombre Bookmarker Bookmarker
ID glhpfpaemdkplbllfmkbigklacjneoba
URL Oficial https://chrome.google.com/webstore/detail/bookmarker/glhpfpaemdkplbllfmkbigklacjneoba
Descripción Say goodbye to millions of open chrome windows that clutter your screen and slow your machine! A tab manager for the power user.
Tamaño del Archivo 962 KB
Cantidad de Instalaciones 36
Versión Actual 1.2.1
Última Actualización 2019-02-24
Fecha de Publicación 2019-02-24
Calificación 3.50/5 Total de 4 Calificaciones
Desarrollador bookmarker extension
Correo electrónico [email protected]
Tipo de Pago free
Sitio Web de la Extensión https://github.com/nami634/Bookmarker
URL de la Página de Ayuda https://github.com/nami634/Bookmarker/issues
Idiomas Soportados 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"
        }
    }
}