Scrutinizer for GitHub and Bitbucket
Scrutinizer analysis results inside GitHub and Bitbucket.
Scrutinizer for GitHub and Bitbucketとは何ですか?
Scrutinizer for GitHub and Bitbucketはhttps://scrutinizer-ci.comによって開発されたChromeの拡張機能で、その主な機能は「Scrutinizer analysis results inside GitHub and Bitbucket.」です。
拡張機能のスクリーンショット
Scrutinizer for GitHub and Bitbucket拡張機能のCRXファイルをダウンロード
Scrutinizer for GitHub and Bitbucket拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
Scrutinizer code intelligence data and analysis results on GitHub and Bitbucket. 拡張機能の基本情報
| 名前 | |
| ID | jpfnopbpkpaoaoomhmpeiijbcnhkbflg |
| 公式URL | https://chromewebstore.google.com/detail/scrutinizer-for-github-an/jpfnopbpkpaoaoomhmpeiijbcnhkbflg |
| 説明 | Scrutinizer analysis results inside GitHub and Bitbucket. |
| ファイルサイズ | 379 KB |
| インストール数 | 1,316 |
| 現在のバージョン | 3.1.6 |
| 最終更新日 | 2022-11-11 |
| 公開日 | 2020-02-26 |
| 評価 | 3.90/5 合計 10 レビュー |
| 開発者 | https://scrutinizer-ci.com |
| Eメール | [email protected] |
| 支払い方法 | free |
| 拡張機能のウェブサイト | https://scrutinizer-ci.com/docs/integration/chrome-extension |
| 対応言語 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "Scrutinizer for GitHub and Bitbucket",
"description": "Scrutinizer analysis results inside GitHub and Bitbucket.",
"background": {
"scripts": [
"js\/eventPage.js"
]
},
"content_scripts": [
{
"matches": [
"https:\/\/github.com\/*"
],
"css": [
"css\/all_platforms.css",
"css\/bootstrap.scoped.css",
"css\/introjs.css"
],
"js": [
"js\/github.js"
]
},
{
"matches": [
"https:\/\/bitbucket.org\/*"
],
"css": [
"css\/all_platforms.css",
"css\/bootstrap.scoped.css",
"css\/introjs.css"
],
"js": [
"js\/bitbucket.js"
]
},
{
"matches": [
"https:\/\/scrutinizer-ci.com\/*"
],
"js": [
"js\/extensionCheck.js"
]
}
],
"icons": {
"16": "images\/icon.png",
"48": "images\/icon.png",
"128": "images\/icon.png"
},
"browser_action": {
"default_icon": "images\/icon.png",
"default_popup": "html\/settings.html",
"default_title": "Change Settings"
},
"permissions": [
"https:\/\/scrutinizer-ci.com\/",
"storage",
"alarms"
],
"web_accessible_resources": [
"images\/*.png",
"images\/*.gif"
],
"version": "3.1.6"
} | |