Hypothesify
Unofficial Hypothes.is extension
Hypothesifyとは何ですか?
HypothesifyはJan Odstrcilikによって開発されたChromeの拡張機能で、その主な機能は「Unofficial Hypothes.is extension」です。
拡張機能のスクリーンショット
Hypothesify拡張機能のCRXファイルをダウンロード
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 |
Eメール | 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" } } } |