Connect Dashboard Refresh

This tool refreshes the participant's connect.cloudresearch.com dashboard on a user defined interval. The user can also toggle on…

Connect Dashboard Refreshคืออะไร?

Connect Dashboard Refresh เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Kay และคุณลักษณะหลักของมันคือ "This tool refreshes the participant's connect.cloudresearch.com dashboard on a user defined interval. The user can also toggle on…"

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Connect Dashboard Refresh

ดาวน์โหลดไฟล์ส่วนขยาย Connect Dashboard Refresh ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        This tool refreshes the participant's connect.cloudresearch.com dashboard on a user defined interval. The user can also toggle on and off the sound alert for upward count changes to the project cards. 

This Extension works best with one connect.cloudresearch.com dashboard tab open at a time. The badge on the extension should be counting down. 

How to Use:
- Install the Extension.
- Pin the extension to the extension bar.
- Log into the connect.cloudresearch.com website.
- Minimize the lefthand panel and click the connect.cloudresearch.com logo image.
- Their should be a blue badge with a number on the Extension icon in the extension bar.
- Click the extension Icon and update the interval to your desired length. (optional)
- Click the extension Icon and press the start button.  
- The blue badge should be counting down once elapsed the dashboard panel should refresh. 
- If the project card count has gone up a sound will alert at {interval -2}, so if you set it to 10 
seconds it will try to alert at 8 seconds.

Trouble Shooting:
If the Extension stops refreshing the page follow these steps.
- Make sure only 1 tab of the connect.cloudresearch.com dashboard is open.
- Click the connect.cloudresearch.com logo image.
- Refresh the page.
- if the blue badge is not counting down; Click the extension and press the start button.

If you Don't hear the sound alert.
- Chrome requires you to interact with the page before a sound will autoplay. Try clicking 
anywhere on the dashboard. 
- More permanently you can adjust the site settings for connect.cloudresearch.com to allow sound. This URL should pull that up chrome://settings/content/siteDetails?site=https%3A%2F%2Fconnect.cloudresearch.com Look for the Sound drop down and change it to allow.

Please let me know if this extension is helpful by leaving a rating and offering any constructive feedback. 

🐸- V2.3 - Reworked the way the sound alert is stored and played.

🐸- V2.2 - Reworked the way the dashboard page is detected, which allows for a more consistent refresh on the various Dashboard URLs. 

🐸- V2.1 - Redesigned the Popup UI 

🐸 - V2.0 - Added Sound alert for an up count in projects.                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Connect Dashboard Refresh Connect Dashboard Refresh
ID maffgebpfigjhgalhcjajnhlacbpmjmi
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/connect-dashboard-refresh/maffgebpfigjhgalhcjajnhlacbpmjmi
คำอธิบาย This tool refreshes the participant's connect.cloudresearch.com dashboard on a user defined interval. The user can also toggle on…
ขนาดไฟล์ 89.34 KB
จำนวนการติดตั้ง 219
เวอร์ชันปัจจุบัน 2.3
อัปเดตครั้งล่าสุด 2024-02-29
วันที่เผยแพร่ 2024-01-17
คะแนน 5.00/5 รวมทั้งหมด 5 คะแนน
ผู้พัฒนา Kay
อีเมล [email protected]
ประเภทการชำระเงิน free
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Connect Dashboard Refresh",
    "version": "2.3",
    "permissions": [
        "offscreen",
        "storage",
        "activeTab"
    ],
    "author": "Cristen Saline",
    "icons": {
        "16": "images\/icon16.png",
        "40": "images\/icon40.png",
        "80": "images\/icon80.png"
    },
    "action": {
        "default_popup": "popup.html",
        "default_icon": {
            "16": "images\/icon16.png",
            "40": "images\/icon40.png",
            "80": "images\/icon80.png"
        },
        "default_title": "Connect Dashboard Refresh"
    },
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/connect.cloudresearch.com\/participant\/dashboard\/",
                "https:\/\/connect.cloudresearch.com\/participant\/dashboard"
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "audio\/week7-brrring.mp3"
            ],
            "matches": [
                ""
            ]
        }
    ]
}