Shortlink Finder

Displays an icon if the current page has an official shortlink and makes it easy to copy!

Τι είναι το Shortlink Finder;

Το Shortlink Finder είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον http://joe.gl, και η κύρια λειτουργία του είναι "Displays an icon if the current page has an official shortlink and makes it easy to copy!".

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

screenshot

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

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

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

                        Displays an icon if the current page has an official short link/URL and makes it easy to copy!                    

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

Όνομα Shortlink Finder Shortlink Finder
ID gjbgaoobcdohajkkcanaemikngkaojbk
Επίσημο URL https://chrome.google.com/webstore/detail/shortlink-finder/gjbgaoobcdohajkkcanaemikngkaojbk
Περιγραφή Displays an icon if the current page has an official shortlink and makes it easy to copy!
Μέγεθος Αρχείου 42.51 KB
Αριθμός Εγκαταστάσεων 23
Τρέχουσα Έκδοση 1.1
Τελευταία Ενημέρωση 2014-07-11
Ημερομηνία Δημοσίευσης 2014-07-11
Αξιολόγηση 2.33/5 Συνολικά 3 Αξιολογήσεις
Προγραμματιστής http://joe.gl
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης https://github.com/glombek/ShortlinkExtension
Υποστηριζόμενες Γλώσσες en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Shortlink Finder",
    "version": "1.1",
    "description": "Displays an icon if the current page has an official shortlink and makes it easy to copy!",
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "jquery.min.js",
                "content_script.js"
            ]
        }
    ],
    "page_action": {
        "default_icon": "icon-19.png",
        "default_title": "Get Shortlink",
        "default_popup": "popup.html"
    },
    "permissions": [
        "declarativeContent",
        "activeTab",
        "clipboardWrite"
    ],
    "icons": {
        "19": "icon-19.png",
        "48": "icon-48.png",
        "128": "icon-128.png"
    },
    "manifest_version": 2
}