SimCompaniesHub

Simple SimCompanies hub and easy JSON API data access. Data will be saved at local storage for https://sc.nouseforname.de as well.

SimCompaniesHubคืออะไร?

SimCompaniesHub เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://nouseforname.de และคุณลักษณะหลักของมันคือ "Simple SimCompanies hub and easy JSON API data access. Data will be saved at local storage for https://sc.nouseforname.de as well."

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

screenshot
screenshot
screenshot
screenshot

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

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

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

                        Use the hub to access the game and social media pages of https://www.simcompanies.com/, a business simulation game. 

This extension provides easy access to the game and JSON API data to be used in your/external tools for further processing.

It simply avoid clicking those API urls, where you have to manual copy all the data. This extension will provide buttons to request those urls, after a successful request, the data is in your clipboard, just paste it wherever you need it.

There are two ways accessing the data:
Using context menu icon which only appears on links. Right click to open the menu and find the extension button.
After activating the the API access in the extension options. It will show the buttons inside the main view. Simply click one of those buttons to request the data.

Both ways are working in the same way. After the positive server response, the data will be inside your clipboard.

At https://sc.nouseforname.de you will find player tools and data also using tha data from these requests. If you are at this tools website and requesting the data , it will be saved at the local storage of this domain  and can be used by the website tools.

Have fun using this extension for your tools and tables.

Yours
nouseforname                    

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

ชื่อ SimCompaniesHub SimCompaniesHub
ID pnfiaknjgojmofgnbhgjmfjflfpphpfd
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/simcompanieshub/pnfiaknjgojmofgnbhgjmfjflfpphpfd
คำอธิบาย Simple SimCompanies hub and easy JSON API data access. Data will be saved at local storage for https://sc.nouseforname.de as well.
ขนาดไฟล์ 746 KB
จำนวนการติดตั้ง 86
เวอร์ชันปัจจุบัน 0.11
อัปเดตครั้งล่าสุด 2020-08-15
วันที่เผยแพร่ 2020-06-17
คะแนน 3.00/5 รวมทั้งหมด 2 คะแนน
ผู้พัฒนา https://nouseforname.de
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://sc.nouseforname.de/
URL หน้าช่วยเหลือ https://sc.nouseforname.de/
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "SimCompaniesHub",
    "description": "Simple SimCompanies hub and easy JSON API data access. Data will be saved at local storage for https:\/\/sc.nouseforname.de as well.",
    "version": "0.11",
    "icons": {
        "16": "img\/icon16.png",
        "32": "img\/icon32.png",
        "48": "img\/icon48.png",
        "128": "img\/icon128.png"
    },
    "permissions": [
        "https:\/\/www.simcompanies.com\/",
        "storage",
        "contextMenus",
        "notifications",
        "clipboardWrite"
    ],
    "browser_action": {
        "default_icon": "img\/icon16.png",
        "default_popup": "popup.html"
    },
    "background": {
        "scripts": [
            "js\/jquery-3.5.1.js",
            "js\/background.js"
        ],
        "persistent": false
    },
    "options_ui": {
        "page": "options.html",
        "open_in_tab": false
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/127.0.0.1\/*",
                "https:\/\/sc.nouseforname.de\/*"
            ],
            "js": [
                "js\/jquery-3.5.1.js",
                "js\/content.js"
            ],
            "run_at": "document_end"
        }
    ]
}