Track & Trace Tools
Supercharge your Metrc workflow
Track & Trace Toolsとは何ですか?
Track & Trace Toolsはhttps://trackandtrace.toolsによって開発されたChromeの拡張機能で、その主な機能は「Supercharge your Metrc workflow」です。
拡張機能のスクリーンショット
Track & Trace Tools拡張機能のCRXファイルをダウンロード
Track & Trace Tools拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
Track & Trace Tools is an open source browser extension that extends the behavior of Metrc. It is not affiliated with Metrc.
• Easily navigate your licenses from the Track & Trace Tools dashboard
• Search packages, transfers, plants, and tags right in the page
• One-click view/pring manifest and lab test PDFs
• Manage plants, packages, sales, tags, and transfers
• Harvest, move, destroy, void, and finalize in bulk
Source code can be found at https://github.com/msfrisbie/track-trace-tools 拡張機能の基本情報
| 名前 | |
| ID | dfljickgkbfaoiifheibjpejloipegcb |
| 公式URL | https://chromewebstore.google.com/detail/track-trace-tools/dfljickgkbfaoiifheibjpejloipegcb |
| 説明 | Supercharge your Metrc workflow |
| ファイルサイズ | 11.53 MB |
| インストール数 | 1,708 |
| 現在のバージョン | 1.27.0 |
| 最終更新日 | 2024-03-01 |
| 公開日 | 2022-09-24 |
| 評価 | 4.80/5 合計 10 レビュー |
| 開発者 | https://trackandtrace.tools |
| Eメール | [email protected] |
| 支払い方法 | free |
| 拡張機能のウェブサイト | https://www.trackandtrace.tools |
| プライバシーポリシーページのURL | https://www.trackandtrace.tools/privacy-policy |
| 対応言語 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 3,
"name": "Track & Trace Tools",
"description": "Supercharge your Metrc workflow",
"default_locale": "en",
"host_permissions": [
"https:\/\/*.metrc.com\/*",
"http:\/\/localhost:5000\/*"
],
"permissions": [
"identity",
"storage",
"unlimitedStorage",
"cookies",
"webRequest"
],
"icons": {
"16": "icons\/logo\/logo-square-16.png",
"48": "icons\/logo\/logo-square-48.png",
"128": "icons\/logo\/logo-square-128.png"
},
"background": {
"service_worker": "js\/background.js"
},
"action": {
"default_title": "__MSG_extName__",
"default_popup": "popup.html",
"default_icon": {
"16": "icons\/logo\/logo-square-16.png",
"48": "icons\/logo\/logo-square-48.png",
"128": "icons\/logo\/logo-square-128.png"
}
},
"options_ui": {
"page": "index.html",
"open_in_tab": true
},
"content_scripts": [
{
"matches": [
"https:\/\/*.metrc.com\/*",
"http:\/\/localhost:5000\/*"
],
"run_at": "document_end",
"js": [
"js\/content-script.js"
],
"css": [
"css\/content-script.css",
"css\/content-script.css"
]
},
{
"matches": [
"https:\/\/*.metrc.com\/*",
"http:\/\/localhost:5000\/*"
],
"run_at": "document_start",
"js": [
"js\/load-script.js"
],
"css": []
},
{
"matches": [
"https:\/\/*.metrc.com\/*",
"http:\/\/localhost:5000\/*"
],
"run_at": "document_idle",
"world": "MAIN",
"js": [
"scripts\/main-script.js"
],
"css": []
}
],
"web_accessible_resources": [
{
"resources": [
"img\/*",
"fonts\/*"
],
"matches": [
" | |