Title with URL

Get the active web page's title and URL.

Τι είναι το Title with URL;

Το Title with URL είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον R4HS Inc., και η κύρια λειτουργία του είναι "Get the active web page's title and URL.".

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

screenshot

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

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

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

                        You can easily get the active web page's title and URL by this app.

Updates:
v0.1
 - First beta version.
v0.2
 - Click to copy a title of the active tab page and its URL as from plain text to text/html into clip board.                    

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

Όνομα Title with URL Title with URL
ID cgnjbelglgfnjfdlfdggdeglimegedpp
Επίσημο URL https://chromewebstore.google.com/detail/title-with-url/cgnjbelglgfnjfdlfdggdeglimegedpp
Περιγραφή Get the active web page's title and URL.
Μέγεθος Αρχείου 105 KB
Αριθμός Εγκαταστάσεων 30
Τρέχουσα Έκδοση 0.2
Τελευταία Ενημέρωση 2014-09-25
Ημερομηνία Δημοσίευσης 2014-09-24
Αξιολόγηση 2.00/5 Συνολικά 1 Αξιολογήσεις
Προγραμματιστής R4HS Inc.
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Υποστηριζόμενες Γλώσσες en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Title with URL",
    "description": "Get the active web page's title and URL. ",
    "version": "0.2",
    "manifest_version": 2,
    "background": {
        "persistent": false,
        "scripts": [
            "background.js"
        ]
    },
    "browser_action": {
        "name": "Retrieve",
        "default_popup": "popup.html",
        "default_icon": {
            "19": "twu-icon-19.png",
            "38": "twu-icon-38.png"
        }
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*.com\/"
            ],
            "js": [
                "jquery-2.1.1.min.js",
                "content_script.js"
            ]
        }
    ],
    "icons": {
        "16": "twu-icon-16.png",
        "128": "twu-icon-128.png"
    },
    "permissions": [
        "clipboardWrite",
        "tabs",
        "activeTab"
    ]
}