Add URL to page title

Simply adds the URL to the title bar.

Add URL to page title क्या है?

Add URL to page title Simon Perry द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Simply adds the URL to the title bar."।

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Add URL to page title एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        This put the URL of any web page you're on into the page title in the format:

Original Title |url:[http://www.the-url.com]

But why?

In Chrome, other applications used to be able to use Chrome_OmniboxView to get the URL of the page you are on. Since version 28, you can no longer do this.

However, you can still get the title of the window. This simple Chrome extension puts the URL into the title to make it available to other applications.                    

एक्सटेंशन की मूल जानकारी

नाम Add URL to page title Add URL to page title
ID ghpeimfjbonkimelnkbgekmcboomkgmi
आधिकारिक URL https://chromewebstore.google.com/detail/add-url-to-page-title/ghpeimfjbonkimelnkbgekmcboomkgmi
विवरण Simply adds the URL to the title bar.
फ़ाइल का आकार 2.79 KB
स्थापना संख्या 733
वर्तमान संस्करण 1.0
अंतिम अपडेट 2013-09-17
प्रकाशन तिथि 2013-09-17
रेटिंग 4.29/5 कुल 7 रेटिंग्स
डेवलपर Simon Perry
ईमेल [email protected]
भुगतान के प्रकार free
समर्थित भाषाएँ en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Add URL to page title",
    "version": "1.0",
    "manifest_version": 2,
    "description": "Simply adds the URL to the title bar.",
    "permissions": [
        "tabs",
        "http:\/\/*\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "inject.js"
            ]
        }
    ]
}