Hypothesify
Unofficial Hypothes.is extension
Hypothesify란 무엇입니까?
Hypothesify은(는) Jan Odstrcilik에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Unofficial Hypothes.is extension"입니다.
확장 프로그램 스크린샷
Hypothesify 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
🧐 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" } } } |