any-peek
peek any web page from the top icon
ما هو any-peek؟
any-peek هو إضافة Chrome تم تطويرها بواسطة rotagi37، والميزة الرئيسية لها هي "peek any web page from the top icon".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة any-peek
قم بتنزيل ملفات الامتداد any-peek بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
peek any web page from the top icon
معلومات أساسية عن التمديد
الاسم | ![]() |
ID | oiejnoljaonlcfbccehcbkkhabhklipe |
عنوان URL الرسمي | https://chrome.google.com/webstore/detail/oiejnoljaonlcfbccehcbkkhabhklipe |
الوصف | peek any web page from the top icon |
حجم الملف | 159 KB |
عدد التثبيتات | 10 |
النسخة الحالية | 2.0.5.8 |
آخر تحديث | 2019-10-04 |
تاريخ النشر | 2019-10-04 |
المطور | rotagi37 |
البريد الإلكتروني | [email protected] |
نوع الدفع | free |
اللغات المدعومة | 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" } ] } |