Copy CSS
Simple extension to copy/analyze css for each and individual elements in a given page.
What is Copy CSS?
Copy CSS is a Chrome extension developed by manikandan, and its main feature is "Simple extension to copy/analyze css for each and individual elements in a given page.".
Extension Screenshots
Download Copy CSS Extension CRX File
Download Copy CSS extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
Simple extension to copy/analyze css for each and individual elements in a given page.
Extension Basic Information
Name | Copy CSS |
ID | oegigohfacogpciniaoglfmdmbnapmla |
Official URL | https://chromewebstore.google.com/detail/copy-css/oegigohfacogpciniaoglfmdmbnapmla |
Description | Simple extension to copy/analyze css for each and individual elements in a given page. |
File Size | 211 KB |
Installation Count | 101 |
Current Version | 1.0.0 |
Last Updated | 2019-03-09 |
Publish Date | 2019-03-04 |
Developer | manikandan |
Payment Type | free |
Supported Languages | 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" } } |