Autoviewed
Mark as viewed files that aren't worth reviewing in your Github pull requests
Autoviewedとは何ですか?
Autoviewedはluismahouによって開発されたChromeの拡張機能で、その主な機能は「Mark as viewed files that aren't worth reviewing in your Github pull requests」です。
拡張機能のスクリーンショット
Autoviewed拡張機能のCRXファイルをダウンロード
Autoviewed拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
I know, I know, you shouldn't have auto-generated files in your git repository, but you know, sometimes you do 😄. This extension will mark as viewed those files automatically without human intervention 🎉 拡張機能の基本情報
| 名前 | |
| ID | occcjmolphcfebdeichmoflmfgeefjef |
| 公式URL | https://chromewebstore.google.com/detail/autoviewed/occcjmolphcfebdeichmoflmfgeefjef |
| 説明 | Mark as viewed files that aren't worth reviewing in your Github pull requests |
| ファイルサイズ | 235 KB |
| インストール数 | 37 |
| 現在のバージョン | 1.2.0 |
| 最終更新日 | 2022-02-15 |
| 公開日 | 2020-07-02 |
| 評価 | 5.00/5 合計 2 レビュー |
| 開発者 | luismahou |
| Eメール | [email protected] |
| 支払い方法 | free |
| 拡張機能のウェブサイト | https://github.com/Luismahou/autoviewed |
| ヘルプページのURL | https://github.com/Luismahou/autoviewed/issues |
| 対応言語 | en-US |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 3,
"name": "Autoviewed",
"version": "1.2.0",
"description": "Mark as viewed files that aren't worth reviewing in your Github pull requests",
"icons": {
"16": "images\/icon16.png",
"24": "images\/icon24.png",
"32": "images\/icon32.png",
"48": "images\/icon48.png",
"64": "images\/icon64.png",
"128": "images\/icon128.png",
"256": "images\/icon256.png",
"512": "images\/icon512.png"
},
"background": {
"service_worker": "background.js"
},
"content_scripts": [
{
"matches": [
"https:\/\/github.com\/*\/pull\/*"
],
"js": [
"content-script.js"
]
}
],
"action": {
"default_title": "Autoviewed",
"default_icon": "images\/icon48.png",
"default_popup": "popup.html"
},
"options_page": "options.html",
"permissions": [
"declarativeContent",
"storage"
]
} | |