Annoffolding
Augment web browsing experience using web annotations over Hypothes.is.
Annoffolding란 무엇입니까?
Annoffolding은(는) Haritz Medina에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Augment web browsing experience using web annotations over Hypothes.is."입니다.
확장 프로그램 스크린샷
Annoffolding 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
EXTENSION UNDER DEVELOPMENT! It is not a functional extension yet! Augment web browsing experience using web annotations over Hypothes.is. Currently supported augmentations are: - Augment web content using operations: -- Popup creates a popup window with the content of the text body -- Linkage convert textual content in links. - Purpose-based annotation: define your own purposes to conduct a guided anotation on the web. More info at: https://docs.google.com/document/d/1q_i9UwmUTTMYA9YMRTR8QW6LsF9-qponVmq6FDK6Mhw/edit?usp=sharing Privacy policy: http://onekin.org/portal/content/privacy-policy
확장 프로그램 기본 정보
이름 | Annoffolding |
ID | oegkbiijomgfgkdgeeiakhfocaahbgjk |
공식 URL | https://chromewebstore.google.com/detail/annoffolding/oegkbiijomgfgkdgeeiakhfocaahbgjk |
설명 | Augment web browsing experience using web annotations over Hypothes.is. |
파일 크기 | 5.62 MB |
설치 횟수 | 25 |
현재 버전 | 0.1.1 |
최근 업데이트 | 2019-11-09 |
출시 날짜 | 2019-11-08 |
평점 | 3.00/5 총 2 개의 평점 |
개발자 | Haritz Medina |
이메일 | [email protected] |
결제 유형 | free |
개인정보 보호 정책 페이지 URL | https://onekin.org?page_id=1110 |
지원되는 언어 | en,es |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "__MSG_appName__", "short_name": "__MSG_appShortName__", "description": "__MSG_appDescription__", "version": "0.1.1", "manifest_version": 2, "default_locale": "en", "icons": { "16": "images\/icon-16.png", "38": "images\/icon-38.png", "128": "images\/icon-128.png", "512": "images\/icon-512.png" }, "background": { "scripts": [ "scripts\/background.js" ] }, "content_scripts": [ { "matches": [ "*:\/\/*\/*" ], "js": [ "scripts\/contentScript.js" ], "css": [ "styles\/contentScript.css" ], "run_at": "document_end", "all_frames": false } ], "page_action": { "default_icon": "images\/icon-38-bw.png", "default_title": "__MSG_browserActionTitle__" }, "options_page": "pages\/options.html", "options_ui": { "page": "pages\/options.html", "chrome_style": true }, "permissions": [ "contextMenus", "https:\/\/hypothes.is\/", "storage", "tabs" ], "web_accessible_resources": [ "pages\/*.html", "content\/*" ] } |