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 مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
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" ] } ] } |