MyCityPlace - Find Business Reviews & Ratings
This extension shows a business profile, ratings, and reviews from a phone number in the current page
ما هو MyCityPlace - Find Business Reviews & Ratings؟
MyCityPlace - Find Business Reviews & Ratings هو إضافة Chrome تم تطويرها بواسطة http://mycityplace.com، والميزة الرئيسية لها هي "This extension shows a business profile, ratings, and reviews from a phone number in the current page".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة MyCityPlace - Find Business Reviews & Ratings
قم بتنزيل ملفات الامتداد MyCityPlace - Find Business Reviews & Ratings بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
MyCityPlace helps find business's profile, ratings, and reviews using the phone number.
معلومات أساسية عن التمديد
الاسم | |
ID | clkkhfcknlpbljhdmhffcmghmegfdalb |
عنوان URL الرسمي | https://chrome.google.com/webstore/detail/clkkhfcknlpbljhdmhffcmghmegfdalb |
الوصف | This extension shows a business profile, ratings, and reviews from a phone number in the current page |
حجم الملف | 129 KB |
عدد التثبيتات | 19 |
النسخة الحالية | 1.0 |
آخر تحديث | 2015-11-19 |
تاريخ النشر | 2015-11-19 |
تقييم | 5.00/5 مجموع تقييمات 1 |
المطور | http://mycityplace.com |
البريد الإلكتروني | [email protected] |
نوع الدفع | free |
اللغات المدعومة | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "MyCityPlace - Find Business Reviews & Ratings", "description": "This extension shows a business profile, ratings, and reviews from a phone number in the current page", "version": "1.0", "background": { "scripts": [ "background.js" ] }, "browser_action": { "default_icon": "icon.png", "default_popup": "popup.html" }, "icons": { "16": "icon16.png", "48": "icon48.png", "128": "icon48.png" }, "content_scripts": [ { "js": [ "jquery-1.9.1.min.js", "content_script.js" ], "run_at": "document_end", "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ] } ], "permissions": [ "activeTab", "webNavigation", "*:\/\/*\/*" ], "web_accessible_resources": [ "info.png" ] } |