Pantone Color Code Reveal
Simple Extension to get color rbg & hex code
Vad är Pantone Color Code Reveal?
Pantone Color Code Reveal är en Chrome-tillägg utvecklad av spinetax, och dess huvudfunktion är "Simple Extension to get color rbg & hex code".
Tilläggsskärmbilder
Ladda ner Pantone Color Code Reveal-förlängningens CRX-fil
Ladda ner Pantone Color Code Reveal-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
Simple extension to reveal pantone color RGB & HEX code on the website. Grundläggande Information om Tillägg
| Namn | |
| ID | enlicnagnlabekmlceijgnocknhdegih |
| Officiell webbadress | https://chromewebstore.google.com/detail/pantone-color-code-reveal/enlicnagnlabekmlceijgnocknhdegih |
| Beskrivning | Simple Extension to get color rbg & hex code |
| Filstorlek | 12.96 KB |
| Antal Installationer | 632 |
| Aktuell Version | 0.1 |
| Senast Uppdaterad | 2022-11-28 |
| Publiceringsdatum | 2022-10-24 |
| Betyg | 2.00/5 Totalt 4 Betyg |
| Utvecklare | spinetax |
| E-post | [email protected] |
| Betalningssätt | free |
| Stödda Språk | 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"
]
} | |