Tweet This Page
Browser Extension that tweets the current page URL and title.
ما هو Tweet This Page؟
Tweet This Page هو إضافة Chrome تم تطويرها بواسطة shuymn، والميزة الرئيسية لها هي "Browser Extension that tweets the current page URL and title.".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Tweet This Page
قم بتنزيل ملفات الامتداد Tweet This Page بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
The browser extension that allows to tweet the current page URL and title. Feature ・Add "Tweet This Page" context menus.
معلومات أساسية عن التمديد
الاسم | Tweet This Page |
ID | ebddcjemiggiaedelggijfknajbchfah |
عنوان URL الرسمي | https://chromewebstore.google.com/detail/tweet-this-page/ebddcjemiggiaedelggijfknajbchfah |
الوصف | Browser Extension that tweets the current page URL and title. |
حجم الملف | 33.58 KB |
عدد التثبيتات | 393 |
النسخة الحالية | 1.1.1 |
آخر تحديث | 2022-04-08 |
تاريخ النشر | 2020-06-01 |
تقييم | 4.50/5 مجموع تقييمات 2 |
المطور | shuymn |
البريد الإلكتروني | [email protected] |
نوع الدفع | free |
موقع الإضافة | https://github.com/shuymn/tweet-this-page |
عنوان صفحة المساعدة | https://github.com/shuymn/tweet-this-page/issues |
اللغات المدعومة | en,ja |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "__MSG_extName__", "description": "__MSG_extDescription__", "version": "1.1.1", "default_locale": "en", "icons": { "16": "images\/icon-16.png", "48": "images\/icon-48.png", "128": "images\/icon-128.png", "256": "images\/icon-256.png" }, "content_scripts": [ { "matches": [ "https:\/\/twitter.com\/intent\/tweet?url=*" ], "js": [ "scripts\/content.js" ] } ], "background": { "scripts": [ "scripts\/background.js" ], "persistent": false }, "browser_action": { "default_popup": "popup.html" }, "permissions": [ "contextMenus", "webNavigation", "https:\/\/twitter.com\/intent\/tweet?url=*" ] } |