├── .gitignore ├── test.sh ├── screenshots ├── screen1.png └── screen2.png ├── chrome ├── locale │ ├── en-US │ │ ├── overlay.dtd │ │ └── zoteroscholarcitations.properties │ ├── ru-RU │ │ ├── overlay.dtd │ │ └── zoteroscholarcitations.properties │ └── it-IT │ │ ├── overlay.dtd │ │ └── zoteroscholarcitations.properties └── content │ ├── overlay.xul │ └── scripts │ └── zoteroscholarcitations.js ├── chrome.manifest ├── install.rdf ├── README.md └── test └── test.js /.gitignore: -------------------------------------------------------------------------------- 1 | .project 2 | -------------------------------------------------------------------------------- /test.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | mocha --ui tdd 4 | -------------------------------------------------------------------------------- /screenshots/screen1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beloglazov/zotero-scholar-citations/HEAD/screenshots/screen1.png -------------------------------------------------------------------------------- /screenshots/screen2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beloglazov/zotero-scholar-citations/HEAD/screenshots/screen2.png -------------------------------------------------------------------------------- /chrome/locale/en-US/overlay.dtd: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /chrome/locale/ru-RU/overlay.dtd: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /chrome/locale/it-IT/overlay.dtd: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /chrome/locale/en-US/zoteroscholarcitations.properties: -------------------------------------------------------------------------------- 1 | captchaString=Please enter the Captcha on the page that will now open and then re-try updating the citations, or wait a while to get unblocked by Google if the Captcha is not present. 2 | citedPrefixString=Cited by 3 | -------------------------------------------------------------------------------- /chrome/locale/it-IT/zoteroscholarcitations.properties: -------------------------------------------------------------------------------- 1 | captchaString=Per piacere inserisci il codice Captcha nella pagina che si aprirà ora e riprova ad aggiornare le citazioni, oppure attendi che Google venga sbloccato se il codice Captcha non è presente. 2 | citedPrefixString=Citato da 3 | -------------------------------------------------------------------------------- /chrome/locale/ru-RU/zoteroscholarcitations.properties: -------------------------------------------------------------------------------- 1 | captchaString=Пожалуйста, введите Captcha код с изображения на странице, которая сейчас откроется, затем попробуйте ещё раз обновить цитирования. Если страница с кодом не отображается, подождите некоторое время для разблокировки сервисом Google Scholar. 2 | citedPrefixString=Цит.: 3 | -------------------------------------------------------------------------------- /chrome.manifest: -------------------------------------------------------------------------------- 1 | content zoteroscholarcitations chrome/content/ 2 | 3 | overlay chrome://zotero/content/zoteroPane.xul chrome://zoteroscholarcitations/content/overlay.xul 4 | 5 | locale zoteroscholarcitations en-US chrome/locale/en-US/ 6 | locale zoteroscholarcitations ru-RU chrome/locale/ru-RU/ 7 | locale zoteroscholarcitations it-IT chrome/locale/it-IT/ 8 | 9 | -------------------------------------------------------------------------------- /chrome/content/overlay.xul: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 8 | 9 |