Popup Closer
This extension closes popups
ما هو Popup Closer؟
Popup Closer هو إضافة Chrome تم تطويرها بواسطة PowerThemes، والميزة الرئيسية لها هي "This extension closes popups".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Popup Closer
قم بتنزيل ملفات الامتداد Popup Closer بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
Are you tired of popups? Want to get rid of this problem once and for all? Popup Closer will help you with this. Instructions: After the installation you will have the extension icon next to the address bar. If some page has popup window: 1) Click on the icon 2) Click on the popup window 3) Click on the icon again 4) Enjoy
معلومات أساسية عن التمديد
الاسم | |
ID | ojgnkglnfmgpldidgmkelpdolefoijdo |
عنوان URL الرسمي | https://chromewebstore.google.com/detail/popup-closer/ojgnkglnfmgpldidgmkelpdolefoijdo |
الوصف | This extension closes popups |
حجم الملف | 44.15 KB |
عدد التثبيتات | 76 |
النسخة الحالية | 0.0.1 |
آخر تحديث | 2014-12-30 |
تاريخ النشر | 2014-12-30 |
تقييم | 1.00/5 مجموع تقييمات 1 |
المطور | PowerThemes |
نوع الدفع | free |
اللغات المدعومة | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Popup Closer", "version": "0.0.1", "manifest_version": 2, "description": "This extension closes popups", "background": { "scripts": [ "background.js", "script.js", "off.js" ], "persistent": false }, "permissions": [ "activeTab" ], "icons": { "128": "icon1.png" }, "browser_action": { "default_title": "Popup Closer", "default_icon": "icon1.png" }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "background.js", "script.js", "off.js" ] } ] } |