any-peek

peek any web page from the top icon

any-peek là gì?

any-peek là một tiện ích mở rộng Chrome được phát triển bởi rotagi37, và tính năng chính của nó là "peek any web page from the top icon".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng any-peek

Tải xuống các tệp mở rộng any-peek dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        peek any web page from the top icon                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên any-peek any-peek
ID oiejnoljaonlcfbccehcbkkhabhklipe
URL Chính Thức https://chrome.google.com/webstore/detail/oiejnoljaonlcfbccehcbkkhabhklipe
Mô tả peek any web page from the top icon
Kích Thước Tệp 159 KB
Số Lần Cài Đặt 10
Phiên Bản Hiện Tại 2.0.5.8
Cập Nhật Lần Cuối 2019-10-04
Ngày Phát Hành 2019-10-04
Nhà Phát Triển rotagi37
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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"
        }
    ]
}