Ditto

Paste CSS text styles from a webpage directly into Sketch.

Ditto क्या है?

Ditto Yana Gevorgyan द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Paste CSS text styles from a webpage directly into Sketch."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot
screenshot
screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Ditto एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        Ditto is a Chrome extension with a companion Sketch plugin that allows designers to copy CSS font styles from live websites and paste them directly into Sketch as Sketch styles.

INSTALLATION
Installing the Chrome Extension

Open Chrome.
1. Go to chrome://extensions
2. Toggle “Developer Mode” in the upper-right
3. Click “Load Unpacked”
4. Navigate to Downloads/ditto-master/chrome/assets
5. Click Open.
Voila, Ditto should be installed in Chrome. You should see a double-t icon in the extension menu.

Installing the Sketch Plugin
1. Go to Downloads/ditto-master/sketch/
2. Run ditto.sketchplugin__

Voila, Ditto should be installed in Sketch. You should see Ditto in the Plugins dropdown menu.


USAGE
Using the Chrome Extension
1. Go to a page that you want to copy styles from.
2. Click the gray raccoon head in the corner to activate the plugin. When activated, the double-t icon should be bright teal and an empty Clipboard History 3. modal should appear with instructions on what to do.
4. Select the text you would like to copy and press your desired shortcut. The default shortcut is Cmd + Right. I suggest you remap it to something better.

Notes about Chrome Extension Usage
- You can select multiple styles in the page, which will appear in the clipboard history. The pink highlight indicates what is currently copied to the clipboard.
- The Clipboard History exists as a way to put previously copied styles back into the clipboard.
- You can drag the Clipboard History in case it’s covering up some text!
- To copy a previously copied style, simply click on an item in the history that you want to copy. It should now be in your clipboard.
- The clipboard history is per-domain, which means that rei.com and rei.com/subpage/ will share the same clipboard.

Using the Sketch Plugin
1. While the CSS is copied to your clipboard, go to Sketch.
2. Have a text layer ready with some text that you want to re-style.
3. Select the text-layer.
4. Press Ctrl+Opt+V to style the text-layer with the styles in your clipboard. Again I suggest you remap this shortcut to something better.

Notes about Sketch Plugin Usage
-You may use the Plugins/Paste CSS Styles menu instead of the hotkey.

FONT PROPERTIES COPIED
Ditto is capable of copying the following styles from CSS into Sketch:
- font-size
- color
- line-height
- font-weight
- text-decoration
- font-family
- font-style
- letter-spacing
- text-transform
- font-variant
- text-shadow

CONTACT
Maintainer: Yana Gevorgyan at [email protected]
Initial Creator: Blake Quigley at [email protected]                    

एक्सटेंशन की मूल जानकारी

नाम Ditto Ditto
ID bkhljfnjkmbofjkmpalldbpnhnlefdje
आधिकारिक URL https://chrome.google.com/webstore/detail/ditto/bkhljfnjkmbofjkmpalldbpnhnlefdje
विवरण Paste CSS text styles from a webpage directly into Sketch.
फ़ाइल का आकार 294 KB
स्थापना संख्या 406
वर्तमान संस्करण 2.2
अंतिम अपडेट 2020-06-26
प्रकाशन तिथि 2020-06-26
रेटिंग 5.00/5 कुल 2 रेटिंग्स
डेवलपर Yana Gevorgyan
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://ygev.github.io/ditto/
सहायता पृष्ठ URL https://github.com/ygev/ditto
समर्थित भाषाएँ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "author": "Yana Gevorgyan",
    "name": "Ditto",
    "version": "2.2",
    "description": "Paste CSS text styles from a webpage directly into Sketch.",
    "permissions": [
        "activeTab",
        "tabs",
        "storage",
        "clipboardWrite",
        "clipboardRead",
        ""
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "browser_action": {
        "default_title": "Waiting for background..."
    },
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "commands": {
        "copy-styles": {
            "suggested_key": {
                "default": "Ctrl+Right"
            },
            "description": "Copy Styles"
        }
    },
    "web_accessible_resources": [
        "TestPage\/test.html",
        "TestPage\/item.html",
        "TestPage\/myscript.js",
        "fonts\/Roboto-Regular.ttf",
        "fonts\/Roboto-Bold.ttf",
        "fonts\/RobotoMono-Medium.ttf"
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "css": [
                "TestPage\/test.css"
            ]
        }
    ],
    "manifest_version": 2
}