AutoReviewComments
No more re-typing the same comments over and over!
AutoReviewComments là gì?
AutoReviewComments là một tiện ích mở rộng Chrome được phát triển bởi Benjol, và tính năng chính của nó là "No more re-typing the same comments over and over!".
Ả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 AutoReviewComments
Tải xuống các tệp mở rộng AutoReviewComments 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
No more re-typing the same comments over and over! -------------------------------------------------- This script adds a little 'auto' link next to all comments boxes on Stack Exchange sites. When you click the link, you see a popup with 6 configurable auto-comments (canned responses), which you can easily click to insert. Features -------- 1. Read your comment before you post it! 2. Customize the texts 3. Quick user info 4. Automatic notification of new versions 5. Import/export of custom comments 6. Remote source for comments 7. Differentiated comments for questions/answers 8. [type here], [username] & [OP] (& $MYUSERID$) 9. Customise welcome message Project homepages - https://github.com/Benjol/SE-AutoReviewComments - http://stackapps.com/q/2116/876
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | |
ID | bcfoamnigomkoaaiceppbbdlembpeejc |
URL Chính Thức | https://chrome.google.com/webstore/detail/autoreviewcomments/bcfoamnigomkoaaiceppbbdlembpeejc |
Mô tả | No more re-typing the same comments over and over! |
Kích Thước Tệp | 55.16 KB |
Số Lần Cài Đặt | 410 |
Phiên Bản Hiện Tại | 1.4.5 |
Cập Nhật Lần Cuối | 2019-02-23 |
Ngày Phát Hành | 2019-02-23 |
Đánh Giá | 4.92/5 Tổng số 12 Đánh Giá |
Nhà Phát Triển | Benjol |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://github.com/Benjol/SE-AutoReviewComments |
URL Trang Trợ Giúp | https://github.com/Benjol/SE-AutoReviewComments/issues |
URL Trang Chính Sách Bảo Mật | https://github.com/Benjol/SE-AutoReviewComments |
Ngôn Ngữ Được Hỗ Trợ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "AutoReviewComments", "version": "1.4.5", "description": "No more re-typing the same comments over and over!", "icons": { "16": "icons\/icon16.png", "48": "icons\/icon48.png", "128": "icons\/icon128.png" }, "author": "Benjol", "content_scripts": [ { "matches": [ "http:\/\/*.stackoverflow.com\/*", "https:\/\/*.stackoverflow.com\/*", "http:\/\/*.serverfault.com\/*", "https:\/\/*.serverfault.com\/*", "http:\/\/*.superuser.com\/*", "https:\/\/*.superuser.com\/*", "http:\/\/*.stackexchange.com\/*", "https:\/\/*.stackexchange.com\/*", "http:\/\/*.askubuntu.com\/*", "https:\/\/*.askubuntu.com\/*", "http:\/\/*.mathoverflow.net\/*", "https:\/\/*.mathoverflow.net\/*", "http:\/\/discuss.area51.stackexchange.com\/*", "https:\/\/discuss.area51.stackexchange.com\/*", "http:\/\/stackapps.com\/*", "https:\/\/stackapps.com\/*" ], "all_frames": true, "run_at": "document_idle", "js": [ "jquery-1.8.3.min.js", "autoreviewcomments.js" ] } ], "content_security_policy": "script-src 'self'; object-src 'self'", "homepage_url": "https:\/\/github.com\/Benjol\/SE-AutoReviewComments", "permissions": [ "activeTab", "http:\/\/*.stackoverflow.com\/*", "https:\/\/*.stackoverflow.com\/*", "http:\/\/*.serverfault.com\/*", "https:\/\/*.serverfault.com\/*", "http:\/\/*.superuser.com\/*", "https:\/\/*.superuser.com\/*", "http:\/\/*.stackexchange.com\/*", "https:\/\/*.stackexchange.com\/*", "http:\/\/*.askubuntu.com\/*", "https:\/\/*.askubuntu.com\/*", "http:\/\/*.mathoverflow.net\/*", "https:\/\/*.mathoverflow.net\/*", "http:\/\/discuss.area51.stackexchange.com\/*", "https:\/\/discuss.area51.stackexchange.com\/*", "http:\/\/stackapps.com\/*", "https:\/\/stackapps.com\/*" ], "web_accessible_resources": [ "jquery-1.8.3.min.js" ] } |