Open Frame

Adds context menu items to open a frame (or iframe) in the current tab, a new tab, new window, or incognito window.

ما هو Open Frame؟

Open Frame هو إضافة Chrome تم تطويرها بواسطة ccrawford1250، والميزة الرئيسية لها هي "Adds context menu items to open a frame (or iframe) in the current tab, a new tab, new window, or incognito window.".

لقطات شاشة التمديد

screenshot

تحميل ملف CRX للإضافة Open Frame

قم بتنزيل ملفات الامتداد Open Frame بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        Adds context menu items to open a frame (or iframe) in the current tab, a new tab, new window, or incognito window. This extension will copy and use the frame URL to open the new tab or window.                    

معلومات أساسية عن التمديد

الاسم Open Frame Open Frame
ID afoejdbdbdfpdhhemjoojjagmcpjjpla
عنوان URL الرسمي https://chromewebstore.google.com/detail/open-frame/afoejdbdbdfpdhhemjoojjagmcpjjpla
الوصف Adds context menu items to open a frame (or iframe) in the current tab, a new tab, new window, or incognito window.
حجم الملف 10.83 KB
عدد التثبيتات 4,616
النسخة الحالية 1.0
آخر تحديث 2023-07-24
تاريخ النشر 2023-07-24
تقييم 5.00/5 مجموع تقييمات 8
المطور ccrawford1250
البريد الإلكتروني [email protected]
نوع الدفع free
اللغات المدعومة en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Open Frame",
    "version": "1.0",
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "description": "Adds context menu items to open a frame (or iframe) in the current tab, a new tab, new window, or incognito window.",
    "icons": {
        "128": "icon128.png",
        "16": "icon16.png",
        "48": "icon48.png"
    },
    "permissions": [
        "tabs",
        "clipboardWrite",
        "contextMenus"
    ]
}