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開發的Chrome擴展程式,該擴展的主要功能是“Simply adds the URL to the title bar.”。
下載Add URL to page title擴展crx文件
下載Add URL to page title擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
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 |
ID | ghpeimfjbonkimelnkbgekmcboomkgmi |
官方網址 | 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" ] } ] } |