Add URL to page title
Simply adds the URL to the title bar.
Add URL to page titleคืออะไร?
Add URL to page title เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Simon Perry และคุณลักษณะหลักของมันคือ "Simply adds the URL to the title bar."
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Add URL to page title
ดาวน์โหลดไฟล์ส่วนขยาย 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 |
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" ] } ] } |