Gmail pagination slider
Use slider or input page number to do Gmail pagination
Gmail pagination sliderคืออะไร?
Gmail pagination slider เป็นส่วนขยายของ Chrome ที่พัฒนาโดย grimmer0125 และคุณลักษณะหลักของมันคือ "Use slider or input page number to do Gmail pagination"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Gmail pagination slider
ดาวน์โหลดไฟล์ส่วนขยาย Gmail pagination slider ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
Use slider or input page number to do Gmail pagination. ## Usage: 1. Set it up New Gmail default UI (Categories on tabs) does not support pagination. Please uncheck some tabs (e.g. social, promotions) in the setting -> configure inbox. You can still access categories in the left menu. 2. Use slider or input text to navigate 3. You can turn off this extension in the popup menu activating from the extension icon on Chrome toolbar. p.s. if you may see your Gmail url is like https://mail.google.com/mail/u/0/?zx=xxxxx#inbox after you do some changes, the extension will not work for that time. Just reopen your Gmail and get the normal url (e.g. https://mail.google.com/mail/u/0/#inbox) to make the extension work again. ## Change log v0.1.2: Support Korean, Hindi and Latin American Spanish languages v0.1.1: More languages support. v0.1: Initial upload ## Limitation: 1. When people do search in Gmail, it is not possible to know how many conversations/emails at the beginning, the workaround way is you still can use slider and input field to try to navigate and find out the final page. 2. This extension is try to get the shown "1-50 of 80" text in Gmail. But sometimes this text will not show (e.g. too small window size or using page zoom other than 100%), and the pagination will fail. Please correct the corresponding UI behavior to recover this.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | Gmail pagination slider |
ID | bcjhpmecgoejigiojamklcbfnfnfgnal |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/gmail-pagination-slider/bcjhpmecgoejigiojamklcbfnfnfgnal |
คำอธิบาย | Use slider or input page number to do Gmail pagination |
ขนาดไฟล์ | 421 KB |
จำนวนการติดตั้ง | 21 |
เวอร์ชันปัจจุบัน | 0.1.2 |
อัปเดตครั้งล่าสุด | 2018-11-14 |
วันที่เผยแพร่ | 2018-11-13 |
คะแนน | 5.00/5 รวมทั้งหมด 1 คะแนน |
ผู้พัฒนา | grimmer0125 |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
เว็บไซต์ส่วนขยาย | https://github.com/grimmer0125/gmail-pagination-extension |
URL หน้านโยบายความเป็นส่วนตัว | https://github.com/lifeoverflow/extensions-privacy-policy |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Gmail pagination slider", "description": "Use slider or input page number to do Gmail pagination", "version": "0.1.2", "icons": { "16": "icon16.png", "48": "icon48.png", "128": "icon128.png" }, "browser_action": { "default_title": "Gmail pagination", "default_popup": "popup.html" }, "permissions": [ "storage" ], "background": { "scripts": [ "background.js" ] }, "content_scripts": [ { "matches": [ "https:\/\/mail.google.com\/*" ], "run_at": "document_end", "css": [ "\/static\/css\/content.css" ], "js": [ "\/static\/js\/content.js" ] } ] } |