Copy CSS
Simple extension to copy/analyze css for each and individual elements in a given page.
Wat is Copy CSS?
Copy CSS is een Chrome-extensie ontwikkeld door manikandan, en de belangrijkste functie is "Simple extension to copy/analyze css for each and individual elements in a given page.".
Extensie Screenshots
Download het CRX-bestand van de extensie Copy CSS
Download Copy CSS-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
Simple extension to copy/analyze css for each and individual elements in a given page. Basisinformatie over de Extensie
| Naam | |
| ID | oegigohfacogpciniaoglfmdmbnapmla |
| Officiële URL | https://chromewebstore.google.com/detail/copy-css/oegigohfacogpciniaoglfmdmbnapmla |
| Beschrijving | Simple extension to copy/analyze css for each and individual elements in a given page. |
| Bestandsgrootte | 211 KB |
| Aantal Installaties | 101 |
| Huidige Versie | 1.0.0 |
| Laatst Bijgewerkt | 2019-03-09 |
| Publicatiedatum | 2019-03-04 |
| Ontwikkelaar | manikandan |
| Betalingswijze | free |
| Ondersteunde Talen | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "Copy CSS",
"version": "1.0.0",
"content_scripts": [
{
"matches": [
"http:\/\/*\/*",
"https:\/\/*\/*"
],
"js": [
"bundle.js"
]
}
],
"background": {
"scripts": [
"background.js"
]
},
"browser_action": {
"default_icon": "css-logo16.png"
},
"permissions": [
"activeTab"
],
"icons": {
"16": "css-logo16.png",
"48": "css-logo48.png",
"128": "css-logo.png"
}
} | |