AutoReviewComments
No more re-typing the same comments over and over!
什麼是AutoReviewComments?
AutoReviewComments是由Benjol開發的Chrome擴展程式,該擴展的主要功能是“No more re-typing the same comments over and over!”。
擴展截圖
下載AutoReviewComments擴展crx文件
下載AutoReviewComments擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
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
擴展基本資訊
名稱 | |
ID | bcfoamnigomkoaaiceppbbdlembpeejc |
官方網址 | https://chrome.google.com/webstore/detail/autoreviewcomments/bcfoamnigomkoaaiceppbbdlembpeejc |
簡介 | No more re-typing the same comments over and over! |
檔案大小 | 55.16 KB |
安裝次數 | 410 |
目前版本 | 1.4.5 |
更新時間 | 2019-02-23 |
上架時間 | 2019-02-23 |
評分 | 4.92/5 共 12 次評分 |
開發者 | Benjol |
付費類型 | free |
擴展官網 | https://github.com/Benjol/SE-AutoReviewComments |
說明頁面URL | https://github.com/Benjol/SE-AutoReviewComments/issues |
隱私政策頁面URL | https://github.com/Benjol/SE-AutoReviewComments |
支援的語言 | 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" ] } |