Black-shrimp

An open source eyedropper extension for Chrome. Pick, save and organize color swatches. Export them for Adobe programs.

Black-shrimp क्या है?

Black-shrimp Thomas L'huillier द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "An open source eyedropper extension for Chrome. Pick, save and organize color swatches. Export them for Adobe programs."।

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

screenshot
screenshot

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

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

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

                        📝 FEATURES
- Pick colors by clicking on the page with the eyedropper
- Create groups and organize your swatches
- Switch between `hex`, `rgb` and `hsl` color modes
- Export your collection in a `.ase` file and import it in Photoshop, Illustrator and InDesign.

⌨️ HOTKEYS
- `ALT + B` is the default key bidding to open Black shrimp  
  You can change it by browsing to `chrome://extensions/shortcuts`

While open:
- `ALT + SHIFT + A` — Add a color
- `ALT + SHIFT + F` — create Folder
- `ALT + SHIFT + D` — Delete selection
- `ALT + SHIFT + E` — Export swatches

⬇️ EXPORT for Photoshop, Illustrator and InDesign
Black shrimp exports your color swatches in Adobe Swatch Exchange files (.ase) that you can import in Photoshop, Illustrator and InDesign.
- Photoshop: https://helpx.adobe.com/photoshop/using/customizing-color-pickers-swatches.html#manage_swatch_libraries#manage_swatch_libraries
- Illustrator: https://helpx.adobe.com/illustrator/using/using-creating-swatches.html#import_swatches_from_another_document
- Indesign: https://helpx.adobe.com/indesign/using/swatches.html#import_swatches

🗣️ Help us improve this project
- log detailed bugs and feature requests on github: https://github.com/Thomas-lhuillier/Black-shrimp/issues
- contribute to the project: https://github.com/Thomas-lhuillier/Black-shrimp

🤘 Help us out by sharing with your friends and giving a rating.                    

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

नाम Black-shrimp Black-shrimp
ID oggljfcldhdcoemgnamdaaaofaenefni
आधिकारिक URL https://chromewebstore.google.com/detail/black-shrimp/oggljfcldhdcoemgnamdaaaofaenefni
विवरण An open source eyedropper extension for Chrome. Pick, save and organize color swatches. Export them for Adobe programs.
फ़ाइल का आकार 172 KB
स्थापना संख्या 4,480
वर्तमान संस्करण 1.2.2
अंतिम अपडेट 2019-06-13
प्रकाशन तिथि 2019-06-09
रेटिंग 3.90/5 कुल 20 रेटिंग्स
डेवलपर Thomas L'huillier
ईमेल [email protected]
भुगतान के प्रकार free
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "description": "An open source eyedropper extension for Chrome. Pick, save and organize color swatches. Export them for Adobe programs.",
    "version": "1.2.2",
    "name": "Black-shrimp",
    "manifest_version": 2,
    "author": "Thomas L'huillier",
    "commands": {
        "_execute_browser_action": {
            "suggested_key": {
                "default": "Alt+B"
            }
        }
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "web_accessible_resources": [
        "*.png",
        "*.woff",
        "*.css",
        "iframe.js",
        "index.html"
    ],
    "browser_action": {
        "default_icon": {
            "16": "assets\/img\/icon16.png"
        },
        "default_title": "Black shrimp"
    },
    "icons": {
        "16": "assets\/img\/icon16.png",
        "48": "assets\/img\/icon48.png",
        "128": "assets\/img\/icon128.png"
    },
    "permissions": [
        "downloads",
        "activeTab",
        "storage",
        "file:\/\/*\/*"
    ]
}