FreeAgent Transaction Explainer

Specify rules to help consistently explain transactions in FreeAgent

FreeAgent Transaction Explainerคืออะไร?

FreeAgent Transaction Explainer เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://gofreerange.com และคุณลักษณะหลักของมันคือ "Specify rules to help consistently explain transactions in FreeAgent"

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

screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย FreeAgent Transaction Explainer

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

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

                        You'll find the latest installation and usage instructions in the project README on GitHub[1], but essentially you just need to install the Chrome extension and point it at a publicly hosted JSON file containing the rules you want to use. An easy way to do this is to use a GitHub Gist and point the extension at the "raw" version of the Gist file.

Then when you're on an unexplained bank transaction in FreeAgent, you can trigger the extension using the icon in the Omnibox (or a keyboard shortcut) to suggest an explanation for the transaction. The extension tries to find a rule matching the bank transaction description and if it finds one, it'll make the appropriate changes to the explanation form, but you still need to manually check the changes and submit the form.

Please feel free to report bugs or request features on the project's GitHub issues page[2].

Note: This extension was developed by Go Free Range Ltd which is not affiliated to FreeAgent Central Ltd and we do not mean to imply that they endorse it in any way.

[1]: https://github.com/freerange/freeagent_transaction_explainer#readme
[2]: https://github.com/freerange/freeagent_transaction_explainer/issues                    

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

ชื่อ FreeAgent Transaction Explainer FreeAgent Transaction Explainer
ID lgpgdkoopbcppnipcnbodcobjmhagmim
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/freeagent-transaction-exp/lgpgdkoopbcppnipcnbodcobjmhagmim
คำอธิบาย Specify rules to help consistently explain transactions in FreeAgent
ขนาดไฟล์ 178 KB
จำนวนการติดตั้ง 23
เวอร์ชันปัจจุบัน 0.3
อัปเดตครั้งล่าสุด 2018-06-09
วันที่เผยแพร่ 2018-06-09
ผู้พัฒนา https://gofreerange.com
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/freerange/freeagent_transaction_explainer
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "FreeAgent Transaction Explainer",
    "description": "Specify rules to help consistently explain transactions in FreeAgent",
    "author": "[email protected]",
    "version": "0.3",
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "icons": {
        "16": "icon-16.png",
        "48": "icon-48.png",
        "128": "icon-128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.freeagent.com\/bank_accounts\/*\/bank_account_entries\/new?bank_transaction_id=*"
            ],
            "js": [
                "jquery-2.1.1.min.js",
                "jquery-ui-1.11.0.min.js",
                "freeagent-transaction-explainer.js"
            ]
        }
    ],
    "page_action": {
        "default_icon": {
            "19": "icon-19.png",
            "38": "icon-38.png"
        }
    },
    "commands": {
        "_execute_page_action": {
            "suggested_key": {
                "default": "Ctrl+E"
            }
        }
    },
    "permissions": [
        "declarativeContent",
        "storage",
        "http:\/\/*\/",
        "https:\/\/*\/"
    ],
    "options_page": "options.html"
}