Pagemark for Chrome
Remember your position on any page
Pagemark for Chromeคืออะไร?
Pagemark for Chrome เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Chuck Baker และคุณลักษณะหลักของมันคือ "Remember your position on any page"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Pagemark for Chrome
ดาวน์โหลดไฟล์ส่วนขยาย Pagemark for Chrome ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
Pagemarks are like bookmarks, but for a specific place within a webpage. One or more pagemarks can be set on most any webpage. Clicking the toolbar icon will scroll the screen to the first/next pagemark.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | Pagemark for Chrome |
ID | mmdffnlogficblnnnehdcjjbcmcaneih |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/pagemark-for-chrome/mmdffnlogficblnnnehdcjjbcmcaneih |
คำอธิบาย | Remember your position on any page |
ขนาดไฟล์ | 144 KB |
จำนวนการติดตั้ง | 142 |
เวอร์ชันปัจจุบัน | 1.0.0.1 |
อัปเดตครั้งล่าสุด | 2016-07-15 |
วันที่เผยแพร่ | 2016-07-15 |
คะแนน | 4.33/5 รวมทั้งหมด 3 คะแนน |
ผู้พัฒนา | Chuck Baker |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
เว็บไซต์ส่วนขยาย | http://softwarebychuck.com/ |
URL หน้าช่วยเหลือ | http://www.customsoftwareconsult.com/forum/viewforum.php?f=18 |
ภาษาที่รองรับ | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Pagemark for Chrome", "short_name": "Pagemark", "description": "Remember your position on any page", "version": "1.0.0.1", "author": "Chuck Baker", "browser_action": { "default_icon": "pm38x38.png", "default_title": "Pagemark\n\nDouble click to set a pagemark at current position\nSingle click to go to next pagemark\nCTRL-CLICK to delete current pagemark\nCTRL-ALT-CLICK to delete all pagemarks on the page" }, "permissions": [ "activeTab", "storage", "tabs", "https:\/\/accounts.google.com\/*", "https:\/\/www.googleapis.com\/*", "http:\/\/*\/", "https:\/\/*\/", "file:\/\/\/*\/*" ], "background": { "persistent": false, "page": "sandbox.html" }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*", "file:\/\/\/*\/*" ], "js": [ "taffy.js", "pmCommon.js", "pmContent.js", "purchase.js", "buy.js", "propsConsole.js" ], "run_at": "document_end", "all_frames": true } ], "options_ui": { "page": "pagemarkOptions.html", "chrome_style": false, "open_in_tab": true }, "oauth2": { "client_id": "476322903377-urvgq80canvq2im29dfvc361uhtfoga1.apps.googleusercontent.com", "scopes": [ "https:\/\/www.googleapis.com\/auth\/plus.login", "https:\/\/www.googleapis.com\/auth\/chromewebstore.readonly", "https:\/\/www.googleapis.com\/auth\/userinfo.email" ] }, "content_security_policy": "script-src 'self' https:\/\/apis.google.com; object-src 'self'", "web_accessible_resources": [ "pagemarkOptions.html", "pmEnd.png" ] } |