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คืออะไร?

Prevue Popup เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Cosmin และคุณลักษณะหลักของมันคือ "Prevue Popup aims at increasing your productivity by allowing you to preview any URL inside the current page, without opening it in…"

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Prevue Popup

ดาวน์โหลดไฟล์ส่วนขยาย Prevue Popup ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        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.                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Prevue Popup Prevue Popup
ID afencccmfcofdgnigbenkpplpanigajd
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/prevue-popup/afencccmfcofdgnigbenkpplpanigajd
คำอธิบาย Prevue Popup aims at increasing your productivity by allowing you to preview any URL inside the current page, without opening it in…
ขนาดไฟล์ 71.21 KB
จำนวนการติดตั้ง 625
เวอร์ชันปัจจุบัน 0.4.6
อัปเดตครั้งล่าสุด 2022-10-01
วันที่เผยแพร่ 2022-03-20
คะแนน 5.00/5 รวมทั้งหมด 12 คะแนน
ผู้พัฒนา Cosmin
อีเมล [email protected]
ประเภทการชำระเงิน free
ภาษาที่รองรับ 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": [
                ""
            ]
        }
    ]
}