Paste Ipsum

Paste Ipsum straight from your right click menu. You got bacon, cupcakes, books, movies and regular ipsum at the tip of your mouse!

Τι είναι το Paste Ipsum;

Το Paste Ipsum είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Coder of the Galaxy, και η κύρια λειτουργία του είναι "Paste Ipsum straight from your right click menu. You got bacon, cupcakes, books, movies and regular ipsum at the tip of your mouse!".

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

screenshot
screenshot
screenshot
screenshot

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

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

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

                        Paste Ipsum allows you to right click and paste different types of Ipsum without having to go somewhere else to get it. All you gotta do is right click and Paste Ipsum! It saves a lot of time if you're looking for a quick way to fill up text boxes, input fields . . . you name it!                    

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

Όνομα Paste Ipsum Paste Ipsum
ID mkbikjdfkhonedidmbfjgiaiekghaeeo
Επίσημο URL https://chrome.google.com/webstore/detail/mkbikjdfkhonedidmbfjgiaiekghaeeo
Περιγραφή Paste Ipsum straight from your right click menu. You got bacon, cupcakes, books, movies and regular ipsum at the tip of your mouse!
Μέγεθος Αρχείου 807 KB
Αριθμός Εγκαταστάσεων 53
Τρέχουσα Έκδοση 1.1.0.1
Τελευταία Ενημέρωση 2017-05-21
Ημερομηνία Δημοσίευσης 2017-05-21
Αξιολόγηση 3.67/5 Συνολικά 3 Αξιολογήσεις
Προγραμματιστής Coder of the Galaxy
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Υποστηριζόμενες Γλώσσες en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Paste Ipsum",
    "description": "Paste Ipsum straight from your right click menu. You got bacon, cupcakes, books, movies and regular ipsum at the tip of your mouse!",
    "version": "1.1.0.1",
    "background": {
        "scripts": [
            "\/src\/assets\/lib\/jquery-3.2.1.min.js",
            "\/src\/options\/chromeApiWrapper.js",
            "\/src\/background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "\/src\/assets\/lib\/jquery-3.2.1.min.js",
                "\/src\/assets\/resources\/ipsums\/defaultIpsum.js",
                "\/src\/assets\/resources\/ipsums\/baconIpsum.js",
                "\/src\/assets\/resources\/ipsums\/cupcakesIpsum.js",
                "\/src\/assets\/resources\/ipsums\/booksIpsum.js",
                "\/src\/assets\/resources\/ipsums\/moviesIpsum.js",
                "\/src\/options\/chromeApiWrapper.js",
                "\/src\/utils\/ipsumGenerator.js",
                "\/src\/content.js"
            ]
        }
    ],
    "icons": {
        "16": "src\/assets\/resources\/img\/icon16.png",
        "48": "src\/assets\/resources\/img\/icon48.png",
        "128": "src\/assets\/resources\/img\/icon128.png"
    },
    "options_page": "src\/options\/options.html",
    "options_ui": {
        "chrome_style": true,
        "page": "src\/options\/options.html"
    },
    "browser_action": {
        "default_icon": {
            "19": "src\/assets\/resources\/img\/icon256.png",
            "38": "src\/assets\/resources\/img\/icon256.png"
        },
        "default_title": "Paste Ipsum Options",
        "default_popup": "src\/options\/options.html"
    },
    "permissions": [
        "contextMenus",
        "activeTab",
        "storage",
        "tabs"
    ]
}