Blogspot Quickedit Links

Adds quickedit links for the new Contempo, Soho, Emporio and Notable themes, for a user-specified set of blogspot URLs.

Τι είναι το Blogspot Quickedit Links;

Το Blogspot Quickedit Links είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον https://so-how-do-i.blogspot.com, και η κύρια λειτουργία του είναι "Adds quickedit links for the new Contempo, Soho, Emporio and Notable themes, for a user-specified set of blogspot URLs.".

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

screenshot

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

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

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

                        Using a JS contentscript, adds quickedit links to the posts and gadgets on the new themes, which don't support them anymore.                    

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

Όνομα Blogspot Quickedit Links Blogspot Quickedit Links
ID hpdcclojnmclpjhgaaaffafcpkiabkeg
Επίσημο URL https://chromewebstore.google.com/detail/blogspot-quickedit-links/hpdcclojnmclpjhgaaaffafcpkiabkeg
Περιγραφή Adds quickedit links for the new Contempo, Soho, Emporio and Notable themes, for a user-specified set of blogspot URLs.
Μέγεθος Αρχείου 14.06 KB
Αριθμός Εγκαταστάσεων 145
Τρέχουσα Έκδοση 1.1
Τελευταία Ενημέρωση 2017-03-26
Ημερομηνία Δημοσίευσης 2017-03-26
Αξιολόγηση 4.20/5 Συνολικά 5 Αξιολογήσεις
Προγραμματιστής https://so-how-do-i.blogspot.com
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης https://so-how-do-i.blogspot.com
Διεύθυνση URL της Σελίδας Βοήθειας https://so-how-do-i.blogspot.com.au/2017/03/add-quickedit-icons-to-new-themes.html
Υποστηριζόμενες Γλώσσες en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Blogspot Quickedit Links",
    "description": "Adds quickedit links for the new Contempo, Soho, Emporio and Notable themes, for a user-specified set of blogspot URLs.",
    "version": "1.1",
    "icons": {
        "16": "logo_blogger_color_1x_web_16dp.png",
        "32": "logo_blogger_color_1x_web_32dp.png",
        "48": "logo_blogger_color_1x_web_48dp.png",
        "96": "logo_blogger_color_1x_web_96dp.png"
    },
    "browser_action": {
        "default_icon": "popupicon.png",
        "default_popup": "popup.html",
        "default_title": "Click to edit!"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "contentscript.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "permissions": [
        "activeTab",
        "",
        "storage"
    ]
}