Prevue Popup

Prevue Popup aims at increasing your productivity by allowing you to preview any URL inside the current page, without opening it in…

Prevue Popup là gì?

Prevue Popup là một tiện ích mở rộng Chrome được phát triển bởi Cosmin, và tính năng chính của nó là "Prevue Popup aims at increasing your productivity by allowing you to preview any URL inside the current page, without opening it in…".

Ả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 Prevue Popup

Tải xuống các tệp mở rộng Prevue Popup 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

                        Prevue Popup aims at increasing your productivity by allowing you to preview any URL inside the current page, without opening it in a different tab, or changing the current URL.

The way it works is fairly straight forward, it simply opens an iframe element as a popup inside the current site.

The extension features and extensive options page which allows you to customise it to your liking.                    

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

Tên Prevue Popup Prevue Popup
ID afencccmfcofdgnigbenkpplpanigajd
URL Chính Thức https://chromewebstore.google.com/detail/prevue-popup/afencccmfcofdgnigbenkpplpanigajd
Mô tả Prevue Popup aims at increasing your productivity by allowing you to preview any URL inside the current page, without opening it in…
Kích Thước Tệp 71.21 KB
Số Lần Cài Đặt 625
Phiên Bản Hiện Tại 0.4.6
Cập Nhật Lần Cuối 2022-10-01
Ngày Phát Hành 2022-03-20
Đánh Giá 5.00/5 Tổng số 12 Đánh Giá
Nhà Phát Triển Cosmin
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "action": {
        "default_title": "Prevue Popup Options",
        "default_popup": "options.html"
    },
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "css": [
                "prevue.css"
            ],
            "js": [
                "prevue.js"
            ],
            "all_frames": true
        }
    ],
    "declarative_net_request": {
        "rule_resources": [
            {
                "id": "disable-csp",
                "enabled": false,
                "path": "rules.json"
            }
        ]
    },
    "host_permissions": [
        ""
    ],
    "icons": {
        "512": "pp.png"
    },
    "manifest_version": 3,
    "name": "Prevue Popup",
    "options_page": "options.html",
    "permissions": [
        "tabs",
        "history",
        "storage",
        "scripting",
        "declarativeNetRequest"
    ],
    "version": "0.4.6",
    "web_accessible_resources": [
        {
            "resources": [
                "options.html",
                "prevue.html"
            ],
            "matches": [
                ""
            ]
        }
    ]
}