StartUp

An extension designed to streamline your start up experience with Chrome!

StartUpคืออะไร?

StartUp เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Sam และคุณลักษณะหลักของมันคือ "An extension designed to streamline your start up experience with Chrome!"

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

screenshot

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

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

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

                        StartUp is an extension that was designed to streamline your start up experience with Chrome. This extension allows you to add and remove urls to a stored list, and when you start up Chrome, it will automatically open up your specified urls in their own separate tabs. 

The extensions requires permissions to access tabs and storage. The extension does not track the sites you visit or save your browsing history, only urls that you choose to save are used by StartUp.

I have made the decision to make this project open source! If you would like to contribute to the extension and help make it better for yourself and others, please follow the link and feel free to look through the issues section and find something you can contribute to!

https://github.com/sgalizia/StartUp

** Upcoming Features **
- Redesigned UI for popup and options page
- Designate groups to open in specific windows
- Have multiple groups and switch between which group is active
- Open the current group any time from the popup

*** Change Log ***

* v0.2.2
- Fixes bug where renaming a group would not permanently change the name (Thanks Andrew!)

* v0.2.1
- This update overhauled most of the extension! The extension now uses groups, which you can name, to store urls together. The options page was added and updated to include the current options. On the options page you can change the name of the current group and view all the urls in the current group, as well as clear them if you wish. Many more awesome features coming soon!

* v0.1.4
- Fixes issue with icon path that was preventing the extension from downloading

* v0.1.3
- Updated icons
- Added Small Tile for web store

* v0.1.2
- Fixed an issue where StartUp would not override the default homepage set in Chrome                    

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

ชื่อ StartUp StartUp
ID pfncjgfbdljblfchkmlbppjobacjibdk
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/startup/pfncjgfbdljblfchkmlbppjobacjibdk
คำอธิบาย An extension designed to streamline your start up experience with Chrome!
ขนาดไฟล์ 51.14 KB
จำนวนการติดตั้ง 128
เวอร์ชันปัจจุบัน 0.2.2
อัปเดตครั้งล่าสุด 2016-04-29
วันที่เผยแพร่ 2016-04-28
คะแนน 5.00/5 รวมทั้งหมด 4 คะแนน
ผู้พัฒนา Sam
อีเมล [email protected]
ประเภทการชำระเงิน free
ภาษาที่รองรับ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "StartUp",
    "version": "0.2.2",
    "description": "An extension designed to streamline your start up experience with Chrome!",
    "icons": {
        "128": "images\/icon128.png"
    },
    "browser_action": {
        "default_icon": "images\/icon19.png",
        "default_title": "StartUp",
        "default_popup": "popup.html"
    },
    "background": {
        "scripts": [
            "js\/jquery-2.2.3.min.js",
            "js\/group.js",
            "js\/background.js"
        ]
    },
    "options_page": "options.html",
    "permissions": [
        "tabs",
        "storage"
    ],
    "short_name": "StartUp"
}