StackOverflow Search Tool
This extension helps to search on SO, and learn about your intention
ما هو StackOverflow Search Tool؟
StackOverflow Search Tool هو إضافة Chrome تم تطويرها بواسطة luyihan900225، والميزة الرئيسية لها هي "This extension helps to search on SO, and learn about your intention".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة StackOverflow Search Tool
قم بتنزيل ملفات الامتداد StackOverflow Search Tool بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
A useful tool to help you search on stackoverflow whenever you need. You will also help us to learn about programming learning behavior by sharing your search behavior.
معلومات أساسية عن التمديد
الاسم | |
ID | hnjcboogacdbabimdiblilojlldfkhlm |
عنوان URL الرسمي | https://chrome.google.com/webstore/detail/stackoverflow-search-tool/hnjcboogacdbabimdiblilojlldfkhlm |
الوصف | This extension helps to search on SO, and learn about your intention |
حجم الملف | 159 KB |
عدد التثبيتات | 93 |
النسخة الحالية | 3.0.3 |
آخر تحديث | 2016-11-09 |
تاريخ النشر | 2016-11-09 |
المطور | luyihan900225 |
نوع الدفع | free |
اللغات المدعومة | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "StackOverflow Search Tool", "description": "This extension helps to search on SO, and learn about your intention", "version": "3.0.3", "icons": { "19": "images\/icon19.png", "38": "images\/icon38.png", "128": "images\/icon128.png" }, "browser_action": { "default_icon": { "19": "images\/icon19.png", "38": "images\/icon38.png" }, "default_popup": "popup.html" }, "content_scripts": [ { "matches": [ "http:\/\/stackoverflow.com\/*", "https:\/\/www.google.com\/*" ], "js": [ "jquery-2.1.4.min.js", "jquery.autocomplete.js", "record.js" ], "css": [ "jquery.autocomplete.css" ] } ], "background": { "scripts": [ "background.js" ] }, "permissions": [ "tabs", "activeTab", "storage", "unlimitedStorage" ] } |