Auratikum Web Clipper
Save web references and notes to Auratikum.
什么是Auratikum Web Clipper?
Auratikum Web Clipper是由https://auratikum.de开发的Chrome扩展程序,该扩展的主要功能是“Save web references and notes to Auratikum.”。
扩展截图
下载Auratikum Web Clipper扩展crx文件
下载Auratikum Web Clipper扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Auratikum is one of the easiest ways to write a successful academic paper. Every Bachelor’s, Master’s, PhD thesis or writing project starts with a first thought. Auratikum supports you along the way until you hold the finished paper in your hands. This extension enables users to create a scientific references from any open website by extracting according meta information. In addition, the extension allows user to create new notes and gather information while browsing through websites. Unlike citavi, zotero, mendeley or other reference management systems, Auratikum is more than just capturing references. Check out the website to learn about how Auratikum helps you with your scientific writing.
扩展基本信息
名称 | |
ID | mfopapajhfhifagbjldlpilclhbakjck |
官方URL | https://chrome.google.com/webstore/detail/auratikum-web-clipper/mfopapajhfhifagbjldlpilclhbakjck |
简介 | Save web references and notes to Auratikum. |
文件大小 | 467 KB |
安装次数 | 77 |
当前版本 | 1.0.2 |
更新时间 | 2019-07-04 |
上架时间 | 2019-07-04 |
开发者 | https://auratikum.de |
电子邮箱 | [email protected] |
付费类型 | free |
扩展官网 | https://auratikum.com |
隐私政策页面URL | https://auratikum.de |
支持的语言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Auratikum Web Clipper", "short_name": "Auratikum", "version": "1.0.2", "description": "Save web references and notes to Auratikum.", "browser_action": { "default_title": "Save web reference", "default_popup": "popup.html" }, "author": "Auratikum GmbH", "background": { "page": "background.html" }, "content_scripts": [ { "matches": [ "https:\/\/app.auratikum.com\/*" ], "js": [ "installed.js" ], "run_at": "document_end" }, { "matches": [ "https:\/\/app.auratikum.com\/*" ], "js": [ "auth.js" ] } ], "permissions": [ "tabs", "https:\/\/api.auratikum.de\/*", "storage" ], "minimum_chrome_version": "60", "icons": { "16": "assets\/logo16.png", "48": "assets\/logo48.png", "128": "assets\/logo128.png" }, "content_security_policy": "script-src 'self' https:\/\/ssl.google-analytics.com; object-src 'self'" } |