SimpleRent
The simplest property management payments platform, hands down.
什麼是SimpleRent?
SimpleRent是由SimpleRent開發的Chrome擴展程式,該擴展的主要功能是“The simplest property management payments platform, hands down.”。
擴展截圖
下載SimpleRent擴展crx文件
下載SimpleRent擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
Manage payment rentals in Property Me. New features: • DSL for Victoria Others: • Bug fixes • UI/UX Improvements
擴展基本資訊
名稱 | SimpleRent |
ID | ejnancobllppofpnnlenepgacncofooi |
官方網址 | https://chromewebstore.google.com/detail/simplerent/ejnancobllppofpnnlenepgacncofooi |
簡介 | The simplest property management payments platform, hands down. |
檔案大小 | 2.83 MB |
安裝次數 | 951 |
目前版本 | 1.17.25.19 |
更新時間 | 2023-07-13 |
上架時間 | 2020-06-24 |
開發者 | SimpleRent |
電子郵箱 | [email protected] |
付費類型 | free |
擴展官網 | https://simplerent.com.au/ |
隱私政策頁面URL | https://simplerent.com.au/privacy-policy |
支援的語言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "SimpleRent", "version": "1.17.25.19", "manifest_version": 2, "description": "The simplest property management payments platform, hands down.", "homepage_url": "http:\/\/simplerent.com.au", "icons": { "16": "assets\/images\/icons\/on\/16x16.png", "32": "assets\/images\/icons\/on\/32x32.png", "48": "assets\/images\/icons\/on\/48x48.png", "128": "assets\/images\/icons\/on\/128x128.png" }, "web_accessible_resources": [ "assets\/*", "assets\/fonts\/*.woff2", "lib\/*", "src\/*" ], "background": { "scripts": [ "src\/background\/background.js", "src\/background\/invoiceBackground.js" ], "persistent": true }, "options_page": ".\/src\/options\/index.html", "browser_action": { "default_icon": "assets\/images\/icons\/on\/128x128.png", "default_title": "SimpleRent", "default_popup": "src\/popup\/index.html" }, "permissions": [ "cookies", "tabs", "activeTab", "storage", "webRequest", "*:\/\/simplerent.com.au\/*", "*:\/\/*.simplerent.com.au\/*", "*:\/\/propertyme.com.au\/*", "*:\/\/*.propertyme.com.au\/*", "*:\/\/propertyme.com\/*", "*:\/\/*.propertyme.com\/*", "webRequestBlocking", "http:\/\/localhost:65385\/*" ], "content_scripts": [ { "matches": [ "*:\/\/manager.propertyme.com\/*" ], "run_at": "document_end", "js": [ "src\/content_scripts\/user\/user.js", "src\/content_scripts\/dashboard\/dashboard.js", "src\/content_scripts\/invoices\/invoice.js", "src\/content_scripts\/properties\/property.js", "src\/content_scripts\/tenant_folio\/tenant_folio.js", "src\/content_scripts\/tutorials\/index.js", "src\/content_scripts\/whats_new\/index.js", "src\/content_scripts\/settlement_reports\/index.js" ] }, { "matches": [ "*:\/\/simplerent.com.au\/*", "*:\/\/*.simplerent.com.au\/*", "*:\/\/propertyme.com.au\/*", "*:\/\/*.propertyme.com.au\/*", "*:\/\/propertyme.com\/*", "*:\/\/*.propertyme.com\/*" ], "run_at": "document_end", "js": [ "src\/content_scripts\/authentication\/index.js" ], "css": [ "lib\/font.css" ] } ], "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'" } |