WordBird

Find and Replace Words on Websites.

Τι είναι το WordBird;

Το WordBird είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον thalida, και η κύρια λειτουργία του είναι "Find and Replace Words on Websites.".

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

screenshot

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

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

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

                        Ever wanted to replace all instances of "word" with "bird"? Well, now you can! 
As well as any and all other word/phrase replacements your mind can dream of.                    

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

Όνομα WordBird WordBird
ID phjelaokjghhjogbfmkljhghhnbidfgk
Επίσημο URL https://chrome.google.com/webstore/detail/wordbird/phjelaokjghhjogbfmkljhghhnbidfgk
Περιγραφή Find and Replace Words on Websites.
Μέγεθος Αρχείου 978 KB
Αριθμός Εγκαταστάσεων 13
Τρέχουσα Έκδοση 1.0.5
Τελευταία Ενημέρωση 2017-02-17
Ημερομηνία Δημοσίευσης 2017-02-17
Αξιολόγηση 5.00/5 Συνολικά 2 Αξιολογήσεις
Προγραμματιστής thalida
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης https://github.com/thalida/WordBird
Διεύθυνση URL της Σελίδας Βοήθειας https://github.com/thalida/WordBird/issues
Υποστηριζόμενες Γλώσσες en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "WordBird",
    "description": "Find and Replace Words on Websites.",
    "version": "1.0.5",
    "author": "thalida",
    "homepage_url": "https:\/\/github.com\/thalida\/WordBird",
    "permissions": [
        "storage"
    ],
    "icons": {
        "19": "icons\/icon-on.19.png",
        "48": "icons\/icon-on.48.png",
        "128": "icons\/icon-on.128.png"
    },
    "browser_action": {
        "default_icon": {
            "19": "icons\/icon-on.19.png",
            "48": "icons\/icon-on.48.png",
            "128": "icons\/icon-on.128.png"
        },
        "default_popup": "public\/dist\/popup.html"
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": true
    },
    "options_page": "public\/dist\/options.html",
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "content_script.js"
            ],
            "run_at": "document_end"
        }
    ]
}