Toggl Button for Custom Websites

All the convenience of the official "Toggl Button" extension, with the added benefit of custom websites.

Toggl Button for Custom Websitesคืออะไร?

Toggl Button for Custom Websites เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Steve Farbota และคุณลักษณะหลักของมันคือ "All the convenience of the official "Toggl Button" extension, with the added benefit of custom websites."

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

screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Toggl Button for Custom Websites

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

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

                        Disclaimer: This is not the official "Toggl Button" extension, though it is based off of the original with permission from the Toggl team*.

================================

Hey there, fellow Toggl users!

Does your company use a private Trac installation for work requests? Or maybe you frequently report bugs for a niche website using their Redmine instance? 
Based on the popular "Toggl Button" Chrome extension, this modified version will allow you to integrate Toggl into any website you want, as long as it is running one of these supported services:

- Axosoft
- Any.do
- Asana
- Basecamp
- Bitbucket
- CapsuleCRM
- Drupal
- esa
- Flow
- Gemini
- GitHub
- GitLab
- Google Calendar
- Google Docs
- Google Mail
- HabitRPG
- Help Scout
- JIRA
- Pivotal Tracker
- Podio
- Producteev
- Redbooth
- Redmine
- Sifter
- Sprintly
- Taiga
- TeamWeek
- Teamwork
- TestRail
- Todoist
- Toodledo
- Trac
- Trello
- Unfuddle
- Worksection
- Wunderlist
- Xero
- YouTrack
- Zendesk

To start tracking your time:

1. Click "Add to Chrome".
2. Log in to Toggl from the extension menu or from Toggl.com (tab can be closed).
3. Add your custom website domains in the extension's Settings page.
4. Start timer inside the other web tool and the task’s name will be added to your Toggl time entry.

================================

Found a bug?

Please click the "Need to report a problem?" link in the Reviews section or open an issue at https://github.com/sfarbota/toggl-button-for-custom-websites/issues .

================================

Both the official Toggl Button extension (https://github.com/toggl/toggl-button) and this modified version (https://github.com/sfarbota/toggl-button-for-custom-websites) are open sourced.

*Permission from the Toggl team to fork their extension can be viewed at: https://github.com/toggl/toggl-button/pull/127#issuecomment-59708435.                    

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

ชื่อ Toggl Button for Custom Websites Toggl Button for Custom Websites
ID cblhgnnnpnonkonnfcfkfhhkoldjpdno
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/toggl-button-for-custom-w/cblhgnnnpnonkonnfcfkfhhkoldjpdno
คำอธิบาย All the convenience of the official "Toggl Button" extension, with the added benefit of custom websites.
ขนาดไฟล์ 103 KB
จำนวนการติดตั้ง 2,188
เวอร์ชันปัจจุบัน 0.6.9
อัปเดตครั้งล่าสุด 2015-07-15
วันที่เผยแพร่ 2015-07-14
คะแนน 3.65/5 รวมทั้งหมด 20 คะแนน
ผู้พัฒนา Steve Farbota
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/sfarbota/toggl-button-for-custom-websites
URL หน้าช่วยเหลือ https://github.com/sfarbota/toggl-button-for-custom-websites/issues
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Toggl Button for Custom Websites",
    "short_name": "Toggl Button for Custom Websites",
    "version": "0.6.9",
    "manifest_version": 2,
    "description": "All the convenience of the official \"Toggl Button\" extension, with the added benefit of custom websites.",
    "background": {
        "scripts": [
            "scripts\/background.js"
        ]
    },
    "options_page": "html\/settings.html",
    "browser_action": {
        "default_icon": {
            "19": "images\/inactive-19.png",
            "38": "images\/inactive-38.png"
        },
        "default_popup": "html\/popup.html",
        "default_title": "Toggl Time Tracker"
    },
    "permissions": [
        "notifications",
        "idle",
        "tabs",
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "icons": {
        "16": "images\/icon-16.png",
        "48": "images\/icon-48.png",
        "128": "images\/icon-128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "css": [
                "styles\/style.css"
            ],
            "js": [
                "scripts\/common.js"
            ]
        }
    ]
}