Easy Envato

Get a glimpse of Envato sales data and verify purchase code with just a selection

Τι είναι το Easy Envato;

Το Easy Envato είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον https://unitedover.com, και η κύρια λειτουργία του είναι "Get a glimpse of Envato sales data and verify purchase code with just a selection".

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

screenshot
screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης Easy Envato

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

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

                        Chrome (Chromium) Browser extension to get a glimpse of your Envato sales and verify purchase code of your product listed on Envato Marketplace including ThemeForest, CodeCanyon, VideoHive, AudioJungle, etc.

// WHY CHOOSE US
The only Envato chrome store on extension which is open-source and does not collect any data of yours or your users. Nothing ever touches our servers. 
To verify this you can check our plugin source code on github https://github.com/UnitedOver/easy-envato 

// How to check purchase code?

Checking the purchae code is literally nothing but just selecting your purchase code in the browser and you will be shown with the details.
The extension icon is color coded and will change its color as per the status of purchase code

🟢 - Valid purchase code and support is not expired
🟡 - Valid Purchase code but support is expired
🔴 - Invalid Purchase code

Note: You can click on Purchase and Support End date to copy them. 

// How to set up? 

1. Go to https://build.envato.com/ and log in to you envato account
2. Click on My Apps from the Menu
3. Sroll to the bottom of the page and click on "Create a New Token" button
4. Give your token a name and give the below mentioned permissions
  --> View the user's Envato Account username (View your Envato Account username)
  --> View the user's items' sales history (View your items' sales history)
  --> View the user's statement transactions (View your statement transactions)
5. Copy the token (you will not be able to see this token again if you miss it)
6. Go to Extension Options from Manage Extension Page -> Details
7. Paste the Token in Envato Token field.

Thats it. 👏🏻                    

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

Όνομα Easy Envato Easy Envato
ID hnchmgnmhafhgdkcinjjgkdgeehnadoe
Επίσημο URL https://chromewebstore.google.com/detail/easy-envato/hnchmgnmhafhgdkcinjjgkdgeehnadoe
Περιγραφή Get a glimpse of Envato sales data and verify purchase code with just a selection
Μέγεθος Αρχείου 194 KB
Αριθμός Εγκαταστάσεων 872
Τρέχουσα Έκδοση 2.1
Τελευταία Ενημέρωση 2022-09-13
Ημερομηνία Δημοσίευσης 2020-05-11
Αξιολόγηση 3.33/5 Συνολικά 6 Αξιολογήσεις
Προγραμματιστής https://unitedover.com
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης https://github.com/UnitedOver/easy-envato
Υποστηριζόμενες Γλώσσες en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Easy Envato",
    "version": "2.1",
    "description": "Get a glimpse of Envato sales data and verify purchase code with just a selection",
    "permissions": [
        "storage",
        "clipboardWrite",
        "notifications",
        "alarms"
    ],
    "host_permissions": [
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "background": {
        "service_worker": "background.js"
    },
    "options_page": "options.html",
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "contentScript.js"
            ],
            "css": [
                "contentScript.css"
            ],
            "all_frames": true
        }
    ],
    "icons": {
        "16": "images\/icon16.png",
        "32": "images\/icon32.png",
        "48": "images\/icon48.png",
        "128": "images\/icon128.png"
    },
    "action": {
        "default_icon": "images\/default.png",
        "default_popup": "popup.html",
        "default_title": "Easy Envato"
    },
    "manifest_version": 3
}