WunderlistNavigator

Quickly navigate between wunderlist lists

什么是WunderlistNavigator?

WunderlistNavigator是由Pedro Catré开发的Chrome扩展程序,该扩展的主要功能是“Quickly navigate between wunderlist lists”。

扩展截图

screenshot

下载WunderlistNavigator扩展crx文件

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

扩展使用说明

                        Quickly switch between wunderlist lists on the wunderlist web application by opening the search bar and looking for your lists.

- Press **COMMAND+SHIFT+b** or **CTRL+SHIFT+b** to activate and start typing the keywords to filter lists
- Use `Enter` key or mouse click to jump to list

You can also define your custom shortcut in chrome://extensions/ > Keyboard shortcuts

Note: after installing, you will have to refresh the already opened wunderlist web app                    

扩展基本信息

名称 WunderlistNavigator WunderlistNavigator
ID fjpdombpmbjjdmcbdkkpefkjokgmffah
官方URL https://chromewebstore.google.com/detail/wunderlistnavigator/fjpdombpmbjjdmcbdkkpefkjokgmffah
简介 Quickly navigate between wunderlist lists
文件大小 238 KB
安装次数 58
当前版本 1.0.0
更新时间 2016-10-13
上架时间 2016-10-13
评分 5.00/5 共1次评分
开发者 Pedro Catré
付费类型 free
扩展官网 https://github.com/pedrocatre/wunderlist-navigator
支持的语言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "WunderlistNavigator",
    "short_name": "WunderlistNavigator",
    "version": "1.0.0",
    "manifest_version": 2,
    "author": "Pedro Catr\u00e9",
    "description": "Quickly navigate between wunderlist lists",
    "homepage_url": "https:\/\/github.com\/pedrocatre\/wunderlist-navigator",
    "icons": {
        "16": "assets\/icons\/icon16.png",
        "48": "assets\/icons\/icon48.png",
        "128": "assets\/icons\/icon128.png"
    },
    "permissions": [
        "https:\/\/www.wunderlist.com\/*"
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.wunderlist.com\/*"
            ],
            "css": [
                "assets\/css\/wunderlist-navigator.css"
            ]
        },
        {
            "matches": [
                "https:\/\/www.wunderlist.com\/*"
            ],
            "js": [
                "assets\/lib\/sanitize-html.js",
                "assets\/lib\/jquery.js",
                "wunderlist-navigator.js"
            ]
        }
    ],
    "browser_action": {
        "default_title": "WunderlistNavigator",
        "default_icon": "assets\/icons\/icon128.png"
    },
    "commands": {
        "open-wunderlist-navigator": {
            "suggested_key": {
                "default": "Ctrl+Shift+B",
                "mac": "Command+Shift+B"
            },
            "description": "Opens wunderlist navigator search input"
        }
    }
}