Oriel Auto-Ranker

Automatically ranks your Oriel programmes.

Oriel Auto-Ranker là gì?

Oriel Auto-Ranker là một tiện ích mở rộng Chrome được phát triển bởi CodingMedic, và tính năng chính của nó là "Automatically ranks your Oriel programmes.".

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

screenshot
screenshot

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

Tải xuống các tệp mở rộng Oriel Auto-Ranker 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

                        This is an auto-ranker for Oriel programme preferencing. It allows you to automatically rank jobs on Oriel based on a user specified order. 

In order to use the extension, a single one-time purchase is required. This gives you unlimited use. Note that without purchasing, there is no functionality.

Reasons to use:
+ Compatible with manually ranking in excel or using an online ranking service
+ Almost instantly translate the order in excel to Oriel with just a few clicks
+ Avoid hours of dragging and dropping, which can be error prone and you may encounter timeout errors
+ If you change your mind, it is easy to re-rank your preferences by un-preferencing everything and running the extension again
+ Trusted by >300 final medical students in 2023 application cycle

To use, simply copy the 'Programme Preference' column of your programmes already sorted in the order you wish to preference them. Paste this into the extensions input box in the pop-up and click 'Go'. The extension will instantly drag and drop all of your preferences across.

- Any preferences pasted that are not found will be listed by the extension. 
- If there are already programmes preferenced, these will not be changed. Any non-preferenced programmes that are found within the pasted text will be appended to the preferenced programmes. 
- If you find there are discrepancies, please ensure you download an updated CSV file from Oriel as programmes can be altered/updated by Oriel throughout the preferencing window.

Note: If you have already purchased the extension previously, you can restore the purchase by clicking the "Restore Purchase" button and typing the same email address you used to originally purchase.

Disclaimer: Please check through the preferences after running to ensure they are ranked as intended. Please ensure you save once you are happy with the order. 

This product is not in any way affiliated with Oriel, HEE, UKFPO, NHS or any other organisation. It was created by a foundation doctor to help final year medical students.

For any queries / support, please email [email protected]
Twitter: @AtticusThomson
Visit https://atticusthomson.com/ to see other projects I'm working on                    

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

Tên Oriel Auto-Ranker Oriel Auto-Ranker
ID jebdphfeifjcbobfofijnjmfdpfekhmn
URL Chính Thức https://chromewebstore.google.com/detail/oriel-auto-ranker/jebdphfeifjcbobfofijnjmfdpfekhmn
Mô tả Automatically ranks your Oriel programmes.
Kích Thước Tệp 23.18 KB
Số Lần Cài Đặt 224
Phiên Bản Hiện Tại 0.0.0.3
Cập Nhật Lần Cuối 2024-02-12
Ngày Phát Hành 2023-03-26
Đánh Giá 5.00/5 Tổng số 4 Đánh Giá
Nhà Phát Triển CodingMedic
Email [email protected]
Loại Thanh Toán in_app
Trang Web Mở Rộng https://atticusthomson.com/
URL Trang Chính Sách Bảo Mật https://www.freeprivacypolicy.com/live/820e1153-bf8f-4ae3-b8d4-fdf7fe1db324
Ngôn Ngữ Được Hỗ Trợ en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Oriel Auto-Ranker",
    "version": "0.0.0.3",
    "description": "Automatically ranks your Oriel programmes.",
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.oriel.nhs.uk\/*"
            ],
            "js": [
                "content.js"
            ],
            "css": [
                "styles.css"
            ]
        }
    ],
    "background": {
        "service_worker": "background.js"
    },
    "action": {
        "default_title": "Oriel Auto",
        "default_popup": "popup.html"
    },
    "icons": {
        "128": "Logo.png"
    },
    "permissions": [
        "activeTab",
        "storage"
    ]
}