Extension Monarch

Rule over your extensions with, well, rules. Determine what will or will not be enabled on this browser instance!

Extension Monarchคืออะไร?

Extension Monarch เป็นส่วนขยายของ Chrome ที่พัฒนาโดย r.francis.smith และคุณลักษณะหลักของมันคือ "Rule over your extensions with, well, rules. Determine what will or will not be enabled on this browser instance!"

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

screenshot

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

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

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

                        Ever been frustrated by Chrome syncing the enabled status of all your extensions and apps so that all the junk you need on your ChromeBook is enabled everywhere else?  Well, I have, so I wrote an extension to do something about it as everything else I tried didn't quite cover it for me.  If you're in a similar boat, this might help!

The quick version: click the icon, go through the list of your extensions that pops up and check Y for those you want it to force to be enabled, N on those you want to force to be disabled, and leave the rest alone.  Click Save, click Execute, and off you go!  These rules are saved locally and never synced, since that would defeat the purpose.

There's also an option on the extension's very short options page as to whether you want it to automatically execute the rules when the browser starts.  And finally, you can right-click the pretty butterfly icon and there's a menu item for executing the rules.  Do it however works for you!

Release History:
0.0.3 (2017-07-06) -- added import and export
0.0.2 (2017-07-03) -- initial store release                    

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

ชื่อ Extension Monarch Extension Monarch
ID jknhajejnknlejdgmgjijheikiicbaob
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/extension-monarch/jknhajejnknlejdgmgjijheikiicbaob
คำอธิบาย Rule over your extensions with, well, rules. Determine what will or will not be enabled on this browser instance!
ขนาดไฟล์ 24.26 KB
จำนวนการติดตั้ง 29
เวอร์ชันปัจจุบัน 0.0.3
อัปเดตครั้งล่าสุด 2017-07-14
วันที่เผยแพร่ 2017-07-14
ผู้พัฒนา r.francis.smith
ประเภทการชำระเงิน free
URL หน้าช่วยเหลือ https://github.com/rfrancis/ext-monarch
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Extension Monarch",
    "version": "0.0.3",
    "description": "Rule over your extensions with, well, rules. Determine what will or will not be enabled on this browser instance!",
    "browser_action": {
        "default_title": "Extension Monarch",
        "default_popup": "popup.html"
    },
    "author": "R. Francis Smith ",
    "permissions": [
        "management",
        "storage",
        "contextMenus",
        "notifications",
        "downloads"
    ],
    "minimum_chrome_version": "58",
    "background": {
        "page": "background.html",
        "persistent": false
    },
    "options_ui": {
        "page": "options.html",
        "chrome_style": true
    },
    "icons": {
        "16": "icons8-Butterfly-16.png",
        "48": "icons8-Butterfly-48.png",
        "128": "icons8-Butterfly-128.png"
    }
}