Promnesia
Indicates whether and when the page was visited (and more!)
Promnesiaคืออะไร?
Promnesia เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Dmitrii Gerasimov และคุณลักษณะหลักของมันคือ "Indicates whether and when the page was visited (and more!)"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Promnesia
ดาวน์โหลดไฟล์ส่วนขยาย Promnesia ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
Promnesia is a browser extension (Chrome/Firefox/Firefox mobile) which provides a sidebar which complements browser history with some enhanced features. TLDR: it lets you explore your browsing history in context: where you encountered it, in chat, on Twitter, on Reddit, or just in one of the text files on your computer. This is unlike most modern browsers, where you can only see when you visited the link. It allows you to answer different questions about the current web page: - have I been here before? When? - why have I bookmarked it? - how did I get on it? Which page has led to it? - who sent me this link? Can I just jump to the message? - which links on this page have I already explored? - which posts from this blog page have I already read? *NOTE*: to get the most benefits from the extension, you also need to set up a supplementary service. You can find the instructions here: https://github.com/karlicoss/promnesia#setup
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | Promnesia |
ID | kdmegllpofldcpaclldkopnnjjljoiio |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/promnesia/kdmegllpofldcpaclldkopnnjjljoiio |
คำอธิบาย | Indicates whether and when the page was visited (and more!) |
ขนาดไฟล์ | 950 KB |
จำนวนการติดตั้ง | 422 |
เวอร์ชันปัจจุบัน | 1.2.1 |
อัปเดตครั้งล่าสุด | 2023-01-30 |
วันที่เผยแพร่ | 2020-05-25 |
คะแนน | 5.00/5 รวมทั้งหมด 2 คะแนน |
ผู้พัฒนา | Dmitrii Gerasimov |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
เว็บไซต์ส่วนขยาย | https://github.com/karlicoss/promnesia |
URL หน้าช่วยเหลือ | https://github.com/karlicoss/promnesia/issues |
URL หน้านโยบายความเป็นส่วนตัว | https://github.com/karlicoss/cws-privacy-policy/blob/main/privacy_policy.md |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "background": { "scripts": [ "browser-polyfill.js", "webext-options-sync.js", "background.js" ], "persistent": false }, "options_ui": { "page": "options_page.html", "chrome_style": true, "open_in_tab": true }, "manifest_version": 2, "name": "Promnesia", "version": "1.2.1", "description": "Indicates whether and when the page was visited (and more!)", "icons": { "48": "images\/ic_not_visited_48.png" }, "browser_action": { "default_icon": "images\/ic_not_visited_48.png", "default_title": "Show promnesia sidebar" }, "permissions": [ "file:\/\/\/*", "https:\/\/*\/*", "http:\/\/*\/*", "storage", "webNavigation", "contextMenus", "notifications", "bookmarks", "history" ], "web_accessible_resources": [ "sidebar.css", "*.js.map" ], "commands": { "_execute_browser_action": { "description": "Activate sidebar", "suggested_key": { "default": "Ctrl+Shift+E", "mac": "Command+Shift+E" } }, "mark_visited": { "description": "Mark\/unmark visited links on the current page", "suggested_key": { "default": "Ctrl+Shift+V", "mac": "Command+Shift+V" } }, "search": { "description": "Open search page", "suggested_key": { "default": "Ctrl+Shift+H", "mac": "Command+Shift+H" } } } } |