Recent Crbugs
Quickly access crbugs you have recently viewed.
什麼是Recent Crbugs?
Recent Crbugs是由jleichtling開發的Chrome擴展程式,該擴展的主要功能是“Quickly access crbugs you have recently viewed.”。
擴展截圖
下載Recent Crbugs擴展crx文件
下載Recent Crbugs擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
Go ahead. Close that crbug tab. You know it's just two clicks away.
New in v1.3.1:
- Fixed bug where long titles caused copy button to be pushed off the right side of the popup
New in v1.3:
- Search crbug.com
- Larger click target (thanks scheib@ for the suggestion)
New in v1.2:
- Filter crbugs by search
- New and improved UI (thanks ainslie@ for the good suggestions, thanks to me for the ones I butchered) 擴展基本資訊
| 名稱 | |
| ID | bhddcpbcpjgehcdanidfppngfcjnpodi |
| 官方網址 | https://chromewebstore.google.com/detail/recent-crbugs/bhddcpbcpjgehcdanidfppngfcjnpodi |
| 簡介 | Quickly access crbugs you have recently viewed. |
| 檔案大小 | 488 KB |
| 安裝次數 | 101 |
| 目前版本 | 1.3.1 |
| 更新時間 | 2015-05-22 |
| 上架時間 | 2015-05-21 |
| 評分 | 2.50/5 共 2 次評分 |
| 開發者 | jleichtling |
| 付費類型 | free |
| 支援的語言 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "Recent Crbugs",
"version": "1.3.1",
"description": "Quickly access crbugs you have recently viewed.",
"permissions": [
"webNavigation",
"storage",
"clipboardWrite",
"https:\/\/code.google.com\/*"
],
"browser_action": {
"default_title": "",
"default_popup": "popup.html"
},
"background": {
"persistent": true,
"scripts": [
"bg.js"
]
},
"icons": {
"16": "icon16.png",
"48": "icon48.png",
"128": "icon128.png"
}
} | |