any-peek

peek any web page from the top icon

什么是any-peek?

any-peek是由rotagi37开发的Chrome扩展程序,该扩展的主要功能是“peek any web page from the top icon”。

扩展截图

screenshot

下载any-peek扩展crx文件

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

扩展使用说明

                        peek any web page from the top icon                    

扩展基本信息

名称 any-peek any-peek
ID oiejnoljaonlcfbccehcbkkhabhklipe
官方URL https://chrome.google.com/webstore/detail/oiejnoljaonlcfbccehcbkkhabhklipe
简介 peek any web page from the top icon
文件大小 159 KB
安装次数 10
当前版本 2.0.5.8
更新时间 2019-10-04
上架时间 2019-10-04
开发者 rotagi37
电子邮箱 [email protected]
付费类型 free
支持的语言 en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "any-peek",
    "manifest_version": 2,
    "version": "2.0.5.8",
    "icons": {
        "16": "icon.png",
        "32": "icon.png",
        "48": "icon.png"
    },
    "permissions": [
        "history",
        "contextMenus",
        "clipboardWrite",
        "clipboardRead",
        "webRequest",
        "webRequestBlocking",
        "tabs",
        "https:\/\/*\/*",
        "http:\/\/*\/*"
    ],
    "options_page": "options.html",
    "background": {
        "scripts": [
            "\/bg.js"
        ]
    },
    "browser_action": {
        "default_icon": {
            "16": "icon.png",
            "32": "icon.png",
            "48": "icon.png"
        },
        "default_title": "Peek Any page",
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "all_frames": true,
            "css": [],
            "js": [
                "jquery-3.2.1.min.js",
                "cscript.js"
            ],
            "matches": [
                "https:\/\/*\/*",
                "http:\/\/*\/*"
            ],
            "run_at": "document_end"
        }
    ]
}