Send 2 Photopea

Send image to Photopea

Τι είναι το Send 2 Photopea;

Το Send 2 Photopea είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον azrafe7, και η κύρια λειτουργία του είναι "Send image to Photopea".

Στιγμιότυπα Επέκτασης

screenshot
screenshot
screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης Send 2 Photopea

Λήψη αρχείων επέκτασης Send 2 Photopea σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        Right-click and send images right to Photopea.
If you have an instance of Photopea open, the image will be sent there.

Browse and edit your images, faster.

Should work for Image Elements, and Video Elements too. ;D

Now you can also right-click on the extension button and choose "Take page screenshot..." to send a screenshot to Photopea.

... and choose to open Photopea in incognito if it's not already open (tick "Use incognito..." from the extension button context menu).

TIP: to take screenshots of YouTube videos right-click twice on the video to get past the custom context menu and to the native one that will show a "Send to Photopea" entry (or use the new picker feature) ;)

Right-click on the extension button and select "Toggle element picker..." to activate a picker that let's you visually choose the element to send to Photopea.
When it's active you can fine-tune the selection with Q/A keys, and then press SPACE to send the highlighted element.
The highlighted elements' background should turn green if it's actionable.
In this way you're also able to send images and videos behind an overlay (e.g. vimeo).

Experimental support has been added for SVG and CANVAS elements (via picker).

Please file bugs/feature requests at https://github.com/azrafe7/send2photopea/issues


I frequently use this extension in combination with my other extension (WebClip Element) to clip elements on a page and then send them to Photopea.

CODE: https://github.com/azrafe7/send2photopea

CHANGELOG: https://github.com/azrafe7/send2photopea/blob/main/CHANGELOG.md

WebClipElement: https://chrome.google.com/webstore/detail/webclipelement/ndkjiolmefobbpbiejfnihoccngfbpjh

DISCLAIMER: I'm not affiliated with Photopea, just a big fan of it. :D                    

Βασικές Πληροφορίες Επέκτασης

Όνομα Send 2 Photopea Send 2 Photopea
ID ngjdphpkaopdenfbgkkkgmajgcmhpkme
Επίσημο URL https://chromewebstore.google.com/detail/send-2-photopea/ngjdphpkaopdenfbgkkkgmajgcmhpkme
Περιγραφή Send image to Photopea
Μέγεθος Αρχείου 30.06 KB
Αριθμός Εγκαταστάσεων 133
Τρέχουσα Έκδοση 0.3.99
Τελευταία Ενημέρωση 2024-02-13
Ημερομηνία Δημοσίευσης 2023-07-06
Προγραμματιστής azrafe7
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης https://github.com/azrafe7/send2photopea
Διεύθυνση URL της Σελίδας Βοήθειας https://github.com/azrafe7/send2photopea/issues
Υποστηριζόμενες Γλώσσες en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Send 2 Photopea",
    "version": "0.3.99",
    "description": "Send image to Photopea",
    "manifest_version": 3,
    "permissions": [
        "activeTab",
        "contextMenus",
        "scripting",
        "storage"
    ],
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "contentScript.js"
            ],
            "all_frames": false
        },
        {
            "matches": [
                ""
            ],
            "js": [
                "ElementPicker.js"
            ],
            "css": [
                "ElementPicker.css"
            ],
            "all_frames": false
        }
    ],
    "host_permissions": [
        ""
    ],
    "icons": {
        "16": "assets\/icon16.png",
        "32": "assets\/icon32.png",
        "48": "assets\/icon48.png",
        "128": "assets\/icon128.png"
    },
    "action": {
        "default_icon": {
            "16": "assets\/icon16.png",
            "32": "assets\/icon32.png",
            "48": "assets\/icon48.png",
            "128": "assets\/icon128.png"
        },
        "default_title": "Send 2 Photopea"
    }
}