EasyAccess

Provide easy access to bookmarks

什么是EasyAccess?

EasyAccess是由arathunku开发的Chrome扩展程序,该扩展的主要功能是“Provide easy access to bookmarks”。

扩展截图

screenshot

下载EasyAccess扩展crx文件

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

扩展使用说明

                        Easy access to your bookmarks.

Press CTRL + P on any site and start typing. 

You can change the shortcut in the settings. You can even define sequenes to open input box like: 'p p' or 'ctrl+p p'.

ROADMAP:
 - add new icon
 - add searching through open tabs
 - add searching through history


Contact, questions: https://twitter.com/arathunku

Code available: https://github.com/arathunku/EasyAccess                    

扩展基本信息

名称 EasyAccess EasyAccess
ID eglfbifmfncbdeekilocghogomnkilbh
官方URL https://chromewebstore.google.com/detail/easyaccess/eglfbifmfncbdeekilocghogomnkilbh
简介 Provide easy access to bookmarks
文件大小 46.75 KB
安装次数 25
当前版本 0.0.2
更新时间 2014-06-01
上架时间 2014-06-01
开发者 arathunku
付费类型 free
支持的语言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "EasyAccess",
    "version": "0.0.2",
    "manifest_version": 2,
    "description": "Provide easy access to bookmarks",
    "homepage_url": "http:\/\/twitter.com\/arathunku",
    "icons": {
        "16": "icons\/icon16.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "default_locale": "en",
    "options_page": "src\/options\/index.html",
    "permissions": [
        "storage",
        "bookmarks",
        "tabs",
        ""
    ],
    "background": {
        "scripts": [
            "src\/bg\/background.js"
        ],
        "persistent": true
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "css": [
                "src\/inject\/inject.css"
            ],
            "run_at": "document_start"
        },
        {
            "matches": [
                ""
            ],
            "js": [
                "js\/vendor\/mousetrap.min.js",
                "src\/inject\/inject.js"
            ]
        }
    ],
    "web_accessible_resources": [
        "src\/inject\/inject.html",
        "js\/options.js",
        "js\/vendor\/mousetrap.min.js.js",
        "js\/vendor\/mousetrap-record.min.js.js"
    ]
}