Hypothesify
Unofficial Hypothes.is extension
Hypothesifyคืออะไร?
Hypothesify เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Jan Odstrcilik และคุณลักษณะหลักของมันคือ "Unofficial Hypothes.is extension"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Hypothesify
ดาวน์โหลดไฟล์ส่วนขยาย Hypothesify ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
🧐 What is Hypothesify? Hypothesify is a small unofficial Chrome extension for the annotation tool Hypothes.is that allows private and public annotation of any website or PDF. I decided to make one as part of my learning process of JavaScript. This explains why the code is not really nice and there will be definitely some 🐛. Sorry for the inconvenience. 🗃 Functions of Hypothesify Hypothesify has the following functions: - It can show a number of public annotations for a selected website before you open it in Hypothes.is. ⚠ Please, note that if you choose this option, every URL goes through the servers of Hypothes.is. - It can open and close a selected webpage or a PDF document in Hypothes.is. - It generates a code that you can send to your friends, include in your Note app or integrate into your webpage. To copy the code, click on the generated code panel and press CTRL+C (Windows and Linux) or CMD+C (MacOS). ⚗ Generated code - a simple link 🔗 - HTML element with @href attribute - Markdown code in the format []() -
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | Hypothesify |
ID | febmopfmfkffkdoaggofmjpdhnnckibm |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/hypothesify/febmopfmfkffkdoaggofmjpdhnnckibm |
คำอธิบาย | Unofficial Hypothes.is extension |
ขนาดไฟล์ | 18.26 KB |
จำนวนการติดตั้ง | 86 |
เวอร์ชันปัจจุบัน | 1.1 |
อัปเดตครั้งล่าสุด | 2020-07-25 |
วันที่เผยแพร่ | 2020-05-07 |
ผู้พัฒนา | Jan Odstrcilik |
อีเมล | hypothesify@outlook.com |
ประเภทการชำระเงิน | free |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Hypothesify", "version": "1.1", "description": "Unofficial Hypothes.is extension", "permissions": [ "activeTab", "storage", "tabs" ], "icons": { "16": "icons\/icon16.png", "32": "icons\/icon32.png", "48": "icons\/icon48.png", "128": "icons\/icon128.png" }, "background": { "scripts": [ "\/background_scripts\/background_hypothesify.js" ], "persistent": false }, "browser_action": { "default_popup": "\/popup\/hypothesify.html", "default_title": "Hypothesify", "default_icon": { "16": "icons\/icon16.png", "32": "icons\/icon32.png", "48": "icons\/icon48.png", "128": "icons\/icon128.png" } } } |