Chrome Quirks

A fun extension that allows you to inject pre-loaded effects or custom CSS into any webpage!

Τι είναι το Chrome Quirks;

Το Chrome Quirks είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Paul Krishnamurthy, και η κύρια λειτουργία του είναι "A fun extension that allows you to inject pre-loaded effects or custom CSS into any webpage!".

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

screenshot
screenshot
screenshot
screenshot

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

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

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

                        Chrome Quirks is a fun extension that allows you to inject pre-loaded effects or custom CSS onto any webpage you visit. Developers can quickly and easily edit CSS and test ideas out. This extension appeals to the curious and the pranksters who can't help messing with their less tech-savvy friends!

Feel free to kindly leave some ideas for more pre-loaded effects and improvements along with a good rating!

Enjoy this app and share it with your friends!
*Special thanks to Alex Xie for screenshots*                    

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

Όνομα Chrome Quirks Chrome Quirks
ID bonaodplajkoeboaofhhjbigfhchpehc
Επίσημο URL https://chromewebstore.google.com/detail/chrome-quirks/bonaodplajkoeboaofhhjbigfhchpehc
Περιγραφή A fun extension that allows you to inject pre-loaded effects or custom CSS into any webpage!
Μέγεθος Αρχείου 1.2 MB
Αριθμός Εγκαταστάσεων 102
Τρέχουσα Έκδοση 1.2
Τελευταία Ενημέρωση 2020-11-19
Ημερομηνία Δημοσίευσης 2015-05-21
Αξιολόγηση 5.00/5 Συνολικά 5 Αξιολογήσεις
Προγραμματιστής Paul Krishnamurthy
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης http://paulkr.com/
Υποστηριζόμενες Γλώσσες en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Chrome Quirks",
    "short_name": "CQ",
    "manifest_version": 2,
    "version": "1.2",
    "description": "A fun extension that allows you to inject pre-loaded effects or custom CSS into any webpage!",
    "homepage_url": "http:\/\/paulkr.com\/",
    "icons": {
        "256": "icons\/icon256.png"
    },
    "background": {
        "scripts": [
            "jquery.js",
            "inject.js"
        ],
        "persistance": false
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "jquery.js"
            ]
        }
    ],
    "browser_action": {
        "default_icon": "icons\/icon.png",
        "default_title": "Chrome Quirks",
        "default_popup": "popup.html"
    },
    "permissions": [
        "activeTab",
        "http:\/\/*\/*"
    ],
    "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'"
}