Cite Trove

Copies selected information from the NLA Trove Newspaper website to the clipboard.

Cite Troveคืออะไร?

Cite Trove เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Chris Willoughby และคุณลักษณะหลักของมันคือ "Copies selected information from the NLA Trove Newspaper website to the clipboard."

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Cite Trove

ดาวน์โหลดไฟล์ส่วนขยาย Cite Trove ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        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.                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Cite Trove Cite Trove
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"
    ]
}