ResearchQ

Tool to provide easier access to research work

ResearchQ là gì?

ResearchQ là một tiện ích mở rộng Chrome được phát triển bởi stardate97, và tính năng chính của nó là "Tool to provide easier access to research work".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng ResearchQ

Tải xuống các tệp mở rộng ResearchQ dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        Update Nov 2023: Added feature to support Anna's Archive website. Since Scihub no longer uploads papers from 2021, Anna's Archive has a larger database of articles and books. Right click directly on context menu for DOI links and Select text and right click for textual data, like when searching for books etc.

A simple extension to help research work that does the following:

1. Using context menu (right-click):
     1.1 Redirect to Scihub page of research paper
     1.2 Redirect to Anna's Archive page of research paper
     1.3 Search for the selected article on Google Scholar
     1.4 Direct download article, if available on Scihub, with filename saved as title of article instead of default name
     1.5 Find meaning, noun and pos tag of a selected English word from dictionary

2. Using extension popup:
    2.1 Toggle in popup to Disable the side navbar in Scihub to enhance readability 

3. Using keyboard shortcut
    3.1 Alt+Q - opens current window URL quickly in incognito mode and deletes that url record from the browser history. (P.S: The permission to manage browser history is for this purpose).                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên ResearchQ ResearchQ
ID cagminlaghifppfobnfpjfddengkdnhd
URL Chính Thức https://chromewebstore.google.com/detail/researchq/cagminlaghifppfobnfpjfddengkdnhd
Mô tả Tool to provide easier access to research work
Kích Thước Tệp 54.07 KB
Số Lần Cài Đặt 987
Phiên Bản Hiện Tại 1.2.5
Cập Nhật Lần Cuối 2023-11-25
Ngày Phát Hành 2022-05-17
Đánh Giá 5.00/5 Tổng số 1 Đánh Giá
Nhà Phát Triển stardate97
Email [email protected]
Loại Thanh Toán free
URL Trang Chính Sách Bảo Mật https://docs.google.com/document/d/17prpvIoYwtcx3QYxsD2NxLxlOa8rFR4ffdm8HNbg2mQ/edit?usp=sharing
Ngôn Ngữ Được Hỗ Trợ en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "ResearchQ",
    "short_name": "ResearchQ",
    "description": "Tool to provide easier access to research work",
    "version": "1.2.5",
    "minimum_chrome_version": "90",
    "permissions": [
        "contextMenus",
        "tabs",
        "storage",
        "downloads",
        "history"
    ],
    "icons": {
        "16": "assets\/icon-color.png"
    },
    "background": {
        "service_worker": "background.js",
        "type": "module"
    },
    "action": {
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "commands": {
        "open-incognito": {
            "suggested_key": {
                "default": "Alt+Q",
                "mac": "Alt+Q"
            },
            "description": "Open current url in incognito window"
        }
    }
}