Fix my Twitter!
Gets back Twitter's old design by changing the useragent string
Fix my Twitter!คืออะไร?
Fix my Twitter! เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Zasz และคุณลักษณะหลักของมันคือ "Gets back Twitter's old design by changing the useragent string"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Fix my Twitter!
ดาวน์โหลดไฟล์ส่วนขยาย Fix my Twitter! ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
Almost everyone agrees Twitter's new design is ugly. *Very* ugly. This add-on gets you back the old style! It changes the UA string to IE11's and fixes the clipboard. IMPORTANT: you HAVE to clear Twitter's cookies on install, as this is not something that can be done automatically on Chrome. The source code can be found at: https://github.com/zaszthecroc/fix-my-twitter Permissions: * "https://twitter.com/*": needed for access to the webRequest API * "webRequest", "webRequestBlocking": needed to edit the requests' headers before sending * "browsingData": needed to clear Twitter's cookies
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | Fix my Twitter! |
ID | cajlejogbjblhiamnihpfhmpaohgakhl |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/fix-my-twitter/cajlejogbjblhiamnihpfhmpaohgakhl |
คำอธิบาย | Gets back Twitter's old design by changing the useragent string |
ขนาดไฟล์ | 7.22 KB |
จำนวนการติดตั้ง | 376 |
เวอร์ชันปัจจุบัน | 1.2 |
อัปเดตครั้งล่าสุด | 2019-07-20 |
วันที่เผยแพร่ | 2019-07-19 |
คะแนน | 4.26/5 รวมทั้งหมด 23 คะแนน |
ผู้พัฒนา | Zasz |
ประเภทการชำระเงิน | free |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "description": "Gets back Twitter's old design by changing the useragent string", "manifest_version": 2, "version": "1.2", "name": "Fix my Twitter!", "icons": { "48": "img\/48.png", "96": "img\/96.png" }, "background": { "scripts": [ "background.js" ] }, "content_scripts": [ { "matches": [ "https:\/\/twitter.com\/*" ], "js": [ "content-script.js" ] } ], "permissions": [ "https:\/\/twitter.com\/*", "webRequest", "webRequestBlocking", "browsingData" ] } |