Stack Search
Stack Search adds to your Google Search results answers from: StackOverflow and StackExchange sites.
Stack Search là gì?
Stack Search là một tiện ích mở rộng Chrome được phát triển bởi dor amir, và tính năng chính của nó là "Stack Search adds to your Google Search results answers from: StackOverflow and StackExchange sites.".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Stack Search
Tải xuống các tệp mở rộng Stack Search dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
Stack Search is the chrome extension you’ve always dreamed of! Stack Search adds to your Google Search results a filtered set of the most relevant answers from your top trusted coding sources: StackOverflow and StackExchange. These results are displayed on the right-hand side of the Google SERP, along with links to reach the exact source of the chosen answer. Additionally, the extension displays the amount of answers available under each StackOverflow and StackExchange organic search result, along with a score for the answer and whether the latter has been accepted as reliable. A quick install will change the way you search for coding help forever! It doesn’t take space nor makes the SERP loading time slower. I hope you enjoy it and please, share it and leave comments for further improvements! ****What's new in version 1.8.0**** 1. new visualization
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | |
ID | mmbkjfdlhegphofeodeinpbcifaobacl |
URL Chính Thức | https://chrome.google.com/webstore/detail/stack-search/mmbkjfdlhegphofeodeinpbcifaobacl |
Mô tả | Stack Search adds to your Google Search results answers from: StackOverflow and StackExchange sites. |
Kích Thước Tệp | 734 KB |
Số Lần Cài Đặt | 806 |
Phiên Bản Hiện Tại | 2.2.0 |
Cập Nhật Lần Cuối | 2018-12-25 |
Ngày Phát Hành | 2018-12-25 |
Đánh Giá | 4.93/5 Tổng số 29 Đánh Giá |
Nhà Phát Triển | dor amir |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://github.com/DCookieMonster/stack-search |
URL Trang Trợ Giúp | https://github.com/DCookieMonster/stack-search |
Ngôn Ngữ Được Hỗ Trợ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Stack Search", "description": "Stack Search adds to your Google Search results answers from: StackOverflow and StackExchange sites.", "version": "2.2.0", "short_name": "Stack Search", "content_security_policy": "script-src 'self' https:\/\/www.google-analytics.com\/; object-src 'self'", "minimum_chrome_version": "40", "background": { "run_at": "document_end", "page": "html\/background.html", "js": [ "js\/lib\/analytics.js", "js\/lib\/tracker.js", "js\/answers_manager.js", "js\/background.js" ], "persistent": false }, "options_ui": { "page": "html\/options.html", "chrome_style": true }, "content_scripts": [ { "run_at": "document_end", "js": [ "js\/lib\/jquery.js", "js\/lib\/highlight.min.js", "js\/lib\/analytics.js", "js\/lib\/stack_exchnage.js", "js\/lib\/stack-exchange-wrapper.js", "js\/lib\/utils.js", "js\/lib\/tracker.js", "js\/answers_manager.js", "js\/background.js" ], "css": [ "css\/font-awesome.css", "css\/bootstrap.css", "css\/background.css", "css\/default.min.css" ], "matches": [ "*:\/\/*\/*" ], "include_globs": [ "*:\/\/www.google.*\/*", "*:\/\/google.*\/*" ] }, { "matches": [ "https:\/\/stackexchange.com\/oauth\/login_success?robw&*" ], "run_at": "document_end", "js": [ "js\/login_success.js" ], "all_frames": true } ], "optional_permissions": [ "background", "tabs" ], "browser_action": { "default_title": "Stack Search", "default_icon": "icon_ex.png", "default_popup": "html\/popups.html" }, "web_accessible_resources": [ "css\/fonts\/*.*", "*.ttf", "*.eot", "*.svg", "*.woff", "*.woff2" ], "author": "dor amir", "permissions": [ "https:\/\/api.stackexchange.com\/2.2\/*", "storage", "tabs" ], "manifest_version": 2, "icons": { "16": "icon_ex.png", "48": "icon_ex.png", "128": "icon_ex.png" } } |