Cite Trove
Copies selected information from the NLA Trove Newspaper website to the clipboard.
Cite Trove란 무엇입니까?
Cite Trove은(는) Chris Willoughby에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Copies selected information from the NLA Trove Newspaper website to the clipboard."입니다.
확장 프로그램 스크린샷
Cite Trove 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
A Chrome extension to quote National Library of Australia Trove Newspaper text. Updated for https version of Trove. The Trove Newspaper site (http://trove.nla.gov.au/newspaper?q=) allows users to read and correct newspaper OCR text for historical Australian Newspapers. When quoting newspaper text for research purposes it is useful to quote the newspaper title, date and page. This extension enables a 'Cite Trove' context menu item that adds your selected text and configurable newspaper information to the clipboard. This text is then available for pasting into other applications. To Use: Simply select the OCR text you want copied, right-click the mouse to bring up the context menu, and select "Cite Trove". The selected text, and details about the newspaper, are now available for pasting into another application.
확장 프로그램 기본 정보
이름 | |
ID | obppnlfjpphcaklepoggjopigjoemfbj |
공식 URL | https://chromewebstore.google.com/detail/cite-trove/obppnlfjpphcaklepoggjopigjoemfbj |
설명 | Copies selected information from the NLA Trove Newspaper website to the clipboard. |
파일 크기 | 25.88 KB |
설치 횟수 | 10 |
현재 버전 | 0.3.0 |
최근 업데이트 | 2017-12-08 |
출시 날짜 | 2017-12-08 |
개발자 | Chris Willoughby |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://chrrrisw.github.io/cite-trove-chrome/ |
도움말 페이지 URL | https://chrrrisw.github.io/cite-trove-chrome/ |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Cite Trove", "version": "0.3.0", "description": "Copies selected information from the NLA Trove Newspaper website to the clipboard.", "icons": { "16": "cite-trove-logo16.png", "19": "cite-trove-logo19.png", "32": "cite-trove-logo32.png", "48": "cite-trove-logo48.png", "64": "cite-trove-logo64.png", "96": "cite-trove-logo96.png", "128": "cite-trove-logo128.png" }, "page_action": { "default_icon": { "16": "cite-trove-logo16.png", "19": "cite-trove-logo19.png", "32": "cite-trove-logo32.png", "48": "cite-trove-logo48.png", "64": "cite-trove-logo64.png", "96": "cite-trove-logo96.png", "128": "cite-trove-logo128.png" }, "default_title": "Cite Trove" }, "author": "Chris Willoughby", "background": { "scripts": [ "formatter.js", "background.js" ], "persistent": false }, "content_scripts": [ { "matches": [ "http:\/\/trove.nla.gov.au\/newspaper\/*", "https:\/\/trove.nla.gov.au\/newspaper\/*" ], "js": [ "scraper.js", "content.js" ] } ], "homepage_url": "https:\/\/chrrrisw.github.io\/cite-trove-chrome\/", "minimum_chrome_version": "33", "options_page": "options.html", "options_ui": { "page": "options.html", "chrome_style": true }, "permissions": [ "clipboardWrite", "contextMenus", "declarativeContent", "storage" ] } |