Pantone Color Code Reveal
Simple Extension to get color rbg & hex code
Pantone Color Code Revealとは何ですか?
Pantone Color Code Revealはspinetaxによって開発されたChromeの拡張機能で、その主な機能は「Simple Extension to get color rbg & hex code」です。
拡張機能のスクリーンショット
Pantone Color Code Reveal拡張機能のCRXファイルをダウンロード
Pantone Color Code Reveal拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
Simple extension to reveal pantone color RGB & HEX code on the website. 拡張機能の基本情報
| 名前 | |
| ID | enlicnagnlabekmlceijgnocknhdegih |
| 公式URL | https://chromewebstore.google.com/detail/pantone-color-code-reveal/enlicnagnlabekmlceijgnocknhdegih |
| 説明 | Simple Extension to get color rbg & hex code |
| ファイルサイズ | 12.96 KB |
| インストール数 | 632 |
| 現在のバージョン | 0.1 |
| 最終更新日 | 2022-11-28 |
| 公開日 | 2022-10-24 |
| 評価 | 2.00/5 合計 4 レビュー |
| 開発者 | spinetax |
| Eメール | [email protected] |
| 支払い方法 | free |
| 対応言語 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 3,
"name": "Pantone Color Code Reveal",
"description": "Simple Extension to get color rbg & hex code",
"version": "0.1",
"icons": {
"16": "icon.png",
"48": "icon.png",
"128": "icon.png"
},
"background": {
"service_worker": "background.js"
},
"action": [],
"content_scripts": [
{
"matches": [
"*:\/\/*.pantone.com\/*"
],
"js": [
"content.js"
]
}
],
"permissions": [
"activeTab"
]
} | |