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 กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
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 |
URL หน้าช่วยเหลือ | 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=*" ] } |