Pimp My Canvas

Style Canvas your way!

Τι είναι το Pimp My Canvas;

Το Pimp My Canvas είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον JDipi, ExternalHost0, και η κύρια λειτουργία του είναι "Style Canvas your way!".

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

screenshot
screenshot
screenshot
screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης Pimp My Canvas

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

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

                        Introducing the ultimate tool for spicing up your Canvas experience - Pimp My Canvas! Say goodbye to boring white pages and hello to a colorful, personalized world. With just a few clicks, you can customize any color in Canvas with ease. Whether you're looking to make your school day a little more fun or add some simple flair to your homepage, PMC has you covered. So, add some pizzazz to your Canvas and stand out with Pimp My Canvas!

Within the Colors tab, you can customize page colors individually, apply verified themes or create your own, and customize the Canvas header with gradients. Currently, the customizable colors are:
  - Background Color
  - Sidebar Color
  - Major Color
  - Text Color
  - Accent Text Color
  - Icon Color
  - Secondary Color
  - Tertiary Color
  - Hover Color
ADVANCED:
  - Notification Indicator Color
  - Warning Color
  - Back Button Color
  - Border Color

Within the Theme Library tab you can apply premade Canvas themes or create your own theme out of any colors you like! The possibilities are endless. Additionally, if you make a theme that deserves to be included in a future release of Pimp My Canvas, you can submit the theme to the developers via a Google Form!

In the Gradient tab, you can choose a color palette from https://coolors.co and apply it as a gradient to the left-hand sidebar on Canvas. You can also play with the angle at which the gradient is displayed, and choose to animate it at any speed.

Feel free to report an issue or ask any questions here!
https://github.com/JDipi/PimpMyCanvas/issues

If you like using Pimp My Canvas, please rate it on the Chrome Store and/or give it a star on GitHub! Also, feel free to look at the source code!
https://github.com/JDipi/PimpMyCanvas

Possible features to come:
  - Preview for gradient URLs within the Pimp My Canvas window
  - An option to load default themes without having to reset the entire extension
  - A custom gradient editor like the one in Photoshop
  - General style changes                    

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

Όνομα Pimp My Canvas Pimp My Canvas
ID bgpoafmllopbhciofdpjfeoaadfhhhnd
Επίσημο URL https://chromewebstore.google.com/detail/pimp-my-canvas/bgpoafmllopbhciofdpjfeoaadfhhhnd
Περιγραφή Style Canvas your way!
Μέγεθος Αρχείου 2.41 MB
Αριθμός Εγκαταστάσεων 1,295
Τρέχουσα Έκδοση 1.0.4
Τελευταία Ενημέρωση 2023-02-16
Ημερομηνία Δημοσίευσης 2023-02-03
Αξιολόγηση 5.00/5 Συνολικά 4 Αξιολογήσεις
Προγραμματιστής JDipi, ExternalHost0
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης https://github.com/JDipi/PimpMyCanvas
Διεύθυνση URL της Σελίδας Βοήθειας https://github.com/JDipi/PimpMyCanvas/issues
Υποστηριζόμενες Γλώσσες en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Pimp My Canvas",
    "description": "Style Canvas your way!",
    "version": "1.0.4",
    "icons": {
        "16": "\/images\/logo16.png",
        "48": "\/images\/logo48.png",
        "128": "\/images\/logo128.png"
    },
    "action": {
        "default_popup": "popup.html",
        "default_title": "Pimp My Canvas"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.instructure.com\/*"
            ],
            "js": [
                "jquery-3.6.0.min.js",
                "tailwind.min.js",
                "content.js"
            ]
        }
    ],
    "background": {
        "service_worker": "eventPage.js"
    },
    "web_accessible_resources": [
        {
            "resources": [
                "custom.css"
            ],
            "matches": [
                "https:\/\/*.instructure.com\/*"
            ]
        }
    ],
    "permissions": [
        "storage"
    ]
}