Open New Window in Incognito mode (ONWI)
Google chrome extension for open new window in incognito mode.
ما هو Open New Window in Incognito mode (ONWI)؟
Open New Window in Incognito mode (ONWI) هو إضافة Chrome تم تطويرها بواسطة https://www.x-lab.com.ru، والميزة الرئيسية لها هي "Google chrome extension for open new window in incognito mode.".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Open New Window in Incognito mode (ONWI)
قم بتنزيل ملفات الامتداد Open New Window in Incognito mode (ONWI) بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
Плагин, позволяющий открывать новые окна в режиме инкогнито
معلومات أساسية عن التمديد
الاسم | Open New Window in Incognito mode (ONWI) |
ID | pnabjlpmomajenfpbcogjkghinieadgf |
عنوان URL الرسمي | https://chromewebstore.google.com/detail/open-new-window-in-incogn/pnabjlpmomajenfpbcogjkghinieadgf |
الوصف | Google chrome extension for open new window in incognito mode. |
حجم الملف | 12.58 KB |
عدد التثبيتات | 100 |
النسخة الحالية | 1.0 |
آخر تحديث | 2020-03-27 |
تاريخ النشر | 2020-03-24 |
المطور | https://www.x-lab.com.ru |
البريد الإلكتروني | [email protected] |
نوع الدفع | free |
اللغات المدعومة | ru |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Open New Window in Incognito mode (ONWI)", "version": "1.0", "description": "Google chrome extension for open new window in incognito mode.", "permissions": [ "tabs", "declarativeContent", "storage", "*:\/\/*\/*" ], "background": { "scripts": [ "background.js" ], "persistent": false }, "manifest_version": 2, "page_action": { "default_popup": "popup.html", "default_icon": { "16": "images\/favicon-16x16.png", "32": "images\/favicon-32x32.png", "48": "images\/favicon-32x32.png", "128": "images\/favicon-128x128.png" } }, "icons": { "16": "images\/favicon-16x16.png", "32": "images\/favicon-32x32.png", "48": "images\/favicon-32x32.png", "128": "images\/favicon-128x128.png" }, "content_scripts": [ { "matches": [ "https:\/\/*.lider-cc.ru\/*", "http:\/\/localhost:9001\/*" ], "all_frames": true, "run_at": "document_idle", "js": [ "content.js" ] } ] } |