BibTeX entry from URL
This extension provides a BibTeX reference for the active URL
BibTeX entry from URLคืออะไร?
BibTeX entry from URL เป็นส่วนขยายของ Chrome ที่พัฒนาโดย nettrino และคุณลักษณะหลักของมันคือ "This extension provides a BibTeX reference for the active URL"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย BibTeX entry from URL
ดาวน์โหลดไฟล์ส่วนขยาย BibTeX entry from URL ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
A simple chrome extension that creates a BibTeX entry for the URL in the current tab.
Supports @misc and @online entries.
Tab's title and URL are automatically copied to be used in your LaTeX documents.
"Accessed on" field (resp. "urldate" for @online entries) is optional
Author, year and month info need to be filled-in manually, and can optionally be omitted.
Add
\usepackage{hyperref}
in your LaTeX document for the extension to work properly.
Example of use:
For http://developer.chrome.com/extensions/packaging.html we get:
@misc{Packa3:Online,
author = {},
title = {Packaging - Google Chrome},
howpublished = {\url{https://developer.chrome.com/extensions/packaging}},
month = {},
year = {},
note = {(Accessed on 06/07/2014)}
}
Changes in v.1.3.2: Abbreviation format
Changes in v.1.3.1: Bug fix in option initialization
Changes in v.1.3.0: Added options for omitting blank entries and @online format
Changes in v.1.2.9: Replacing illegal characters in bibtex key with '.'. Switched from 'Visited' to 'Accessed'
Changes in v.1.2.8: added right-click option to save BibTeX (context menu)
Changes in v.1.2.7: CSS fix & restored month, year option
Changes in v.1.2.6: additional date formats
Changes in v.1.2.5: added escaping of TeX special characters and date format selection option
Changes in v.1.2.4: added 'year' and 'month' fields
Changes in v1.2.3 : switched from @online to @misc
Changes in v1.2.2 : added note field. ข้อมูลพื้นฐานของส่วนขยาย
| ชื่อ | |
| ID | mgpmgkhhbjgkpnanlmlhibjfgpdpgjec |
| URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/bibtex-entry-from-url/mgpmgkhhbjgkpnanlmlhibjfgpdpgjec |
| คำอธิบาย | This extension provides a BibTeX reference for the active URL |
| ขนาดไฟล์ | 166 KB |
| จำนวนการติดตั้ง | 26,911 |
| เวอร์ชันปัจจุบัน | 1.3.2 |
| อัปเดตครั้งล่าสุด | 2016-09-10 |
| วันที่เผยแพร่ | 2016-09-09 |
| คะแนน | 4.69/5 รวมทั้งหมด 49 คะแนน |
| ผู้พัฒนา | nettrino |
| ประเภทการชำระเงิน | free |
| ภาษาที่รองรับ | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "BibTeX entry from URL",
"short_name": "url_to_bib",
"description": "This extension provides a BibTeX reference for the active URL",
"version": "1.3.2",
"options_page": "options.html",
"options_ui": {
"page": "options.html",
"chrome_style": true
},
"background": {
"persistent": false,
"scripts": [
"js\/background.js"
]
},
"browser_action": {
"default_icon": "images\/icon30.png",
"default_popup": "popup.html"
},
"icons": {
"128": "images\/icon128.png",
"48": "images\/icon48.png",
"30": "images\/icon30.png"
},
"permissions": [
"contextMenus",
"tabs",
"activeTab"
]
} | |