Page Mod Loader

Developing javascript typescript sass and css PageMod and inject to any web page(by url pattern)

Page Mod Loaderคืออะไร?

Page Mod Loader เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Hsin-Yu Chen และคุณลักษณะหลักของมันคือ "Developing javascript typescript sass and css PageMod and inject to any web page(by url pattern)"

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

screenshot
screenshot
screenshot

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

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

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

                        Development typescript and scss Page-Mod and inject to any web page(by url pattern)
coding with powerful monaco-editor
and share your mods with others
----version 0.4.1 changelog ----
fix bugs
----version 0.4.0 changelog ----
update all packages, and change typescript compiler option's target
to Latest since chrome is support newest javascript
----version 0.3.1 changelog ----
fix load script bugs
----version 0.3.0 changelog ----
update typescript to 3.1.3
add a set of helper functions 
----version 0.2.6 changelog ----
fix discord link
----version 0.2.5 changelog ----
fix opera compatibility issue
----version 0.2.4 changelog ----
now you can disable mods without delete it
----version 0.2.3 changelog ----
fix popup error when no mods
fix script inject multiple times on spa sites
----version 0.2.1 changelog ----
add Mod batch export/import
some UI improvements
----version 0.2.0 changelog ----
add typescript support
fix monaco-editor resize issue
some UI improvements
----version 0.1.2 changelog ----
change icons
----version 0.1.1 changelog ----
sass support
----version 0.0.5 changelog ----
Move storage from sync to local for more capacity
Ctrl+S or Save button now save mod and stay in edit winodw
After you save Mod , css style apply to matched tabs immediately                    

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

ชื่อ Page Mod Loader Page Mod Loader
ID mjjflodggclpiaeooglpbgkeghakfdgl
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/page-mod-loader/mjjflodggclpiaeooglpbgkeghakfdgl
คำอธิบาย Developing javascript typescript sass and css PageMod and inject to any web page(by url pattern)
ขนาดไฟล์ 3.09 MB
จำนวนการติดตั้ง 206
เวอร์ชันปัจจุบัน 0.4.1
อัปเดตครั้งล่าสุด 2019-01-29
วันที่เผยแพร่ 2019-01-29
คะแนน 5.00/5 รวมทั้งหมด 6 คะแนน
ผู้พัฒนา Hsin-Yu Chen
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://discord.gg/ZsREvRb
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Page Mod Loader",
    "short_name": "PML",
    "version": "0.4.1",
    "author": "Hsin-Yu Chen",
    "description": "Developing javascript typescript sass and css PageMod and inject to any web page(by url pattern)",
    "icons": {
        "24": ".\/assets\/icon24.png",
        "48": ".\/assets\/icon48.png",
        "96": ".\/assets\/icon96.png",
        "128": ".\/assets\/icon128.png"
    },
    "browser_action": {
        "default_icon": ".\/assets\/icon48.png",
        "default_popup": "popup.html",
        "default_title": "Show active Mod"
    },
    "options_ui": {
        "page": "options.html",
        "chrome_style": false,
        "open_in_tab": true
    },
    "permissions": [
        "tabs",
        "storage",
        ""
    ],
    "background": {
        "scripts": [
            "sass.worker.js",
            "background.bundle.js"
        ]
    },
    "minimum_chrome_version": "59.0.3071.115"
}