StackOverflow Answer
Quick answers of StackOverflow topics on Google
StackOverflow Answer là gì?
StackOverflow Answer là một tiện ích mở rộng Chrome được phát triển bởi Ronanren, và tính năng chính của nó là "Quick answers of StackOverflow topics on Google".
Ả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 StackOverflow Answer
Tải xuống các tệp mở rộng StackOverflow Answer 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
Chrome Extension to quickly get StackOverflow answers from a google search Features 🌎 Get answer on every StackOverflow instantly ⌛ Fast extension to display the data 🔘 Button on each StackOverflow topic to display the answer 🌓 Switch to dark and light theme 🔑 Put your StackApps api key (no required) Usage In the options (right click on the extension icon and options), you can change the theme and put your StackApps api key to have 10000 requests instead of 300 without key. To get an api key, you need to create an application on Stackapps.com You want to add new features to Stackoverflow Answer? Don't hesitate to check out the code on GitHub! 👉 https://github.com/ronanren/StackOverflowAnswer for Privacy policy 👉 https://github.com/ronanren/StackOverflowAnswer/blob/main/privacy
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | StackOverflow Answer |
ID | bmlkdgmiaemiaopodggkhfblhmefimoi |
URL Chính Thức | https://chromewebstore.google.com/detail/stackoverflow-answer/bmlkdgmiaemiaopodggkhfblhmefimoi |
Mô tả | Quick answers of StackOverflow topics on Google |
Kích Thước Tệp | 2.08 MB |
Số Lần Cài Đặt | 86 |
Phiên Bản Hiện Tại | 1.1 |
Cập Nhật Lần Cuối | 2022-12-21 |
Ngày Phát Hành | 2021-03-30 |
Đánh Giá | 5.00/5 Tổng số 2 Đánh Giá |
Nhà Phát Triển | Ronanren |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://github.com/ronanren/StackOverflowAnswer |
URL Trang Chính Sách Bảo Mật | https://github.com/ronanren/StackOverflowAnswer/blob/main/privacy |
Ngôn Ngữ Được Hỗ Trợ | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "StackOverflow Answer", "description": "Quick answers of StackOverflow topics on Google", "version": "1.1", "manifest_version": 3, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "include_globs": [ "http:\/\/www.google.*\/*", "https:\/\/www.google.*\/*" ], "js": [ "js\/jquery-3.6.0.min.js", "js\/run_prettify.js", "content.js" ], "css": [ "css\/style.css" ] } ], "permissions": [ "storage" ], "options_ui": { "page": "options\/options.html", "open_in_tab": false }, "icons": { "16": "images\/logo16.png", "48": "images\/logo48.png", "128": "images\/logo128.png" } } |