Internet Achievements

Internet Achievements adds a sense of accomplishment to your normal mundane Internet browsing.

Internet Achievementsคืออะไร?

Internet Achievements เป็นส่วนขยายของ Chrome ที่พัฒนาโดย stefaluc000 และคุณลักษณะหลักของมันคือ "Internet Achievements adds a sense of accomplishment to your normal mundane Internet browsing."

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

screenshot
screenshot
screenshot

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

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

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

                        Everyone loves receiving some gratitude for their achievements. With Internet Achievements you can have just that!

Internet Achievements tracks various aspects of your normal web browsing activities and rewards you when we think you've done something worth noting. For example: Watched 100 YouTube videos? Visited 500 unique websites? Here are some achievements!

Every achievement you are rewarded increases your total score. Compete with your friends to see who can be the ultimate Internet user!

Plenty more achievements will be on their way soon. Stay tuned.

We're open source.
Want to know how it's made? Check out the code at:  https://github.com/stefaluc/internet-achievements
Or better yet, send us a pull request if you want to add your own custom achievements to the extension.

DISCLAIMER: This extension will never record or modify any of the data on the websites you visit. All storage is done locally through your browser, and there is no back-end database communications happening--it cannot be accessed by anyone but yourself. The sole reasoning for needing the "Read and change all your data on websites you visit" permission is simply to read what URL you are currently visiting.                    

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

ชื่อ Internet Achievements Internet Achievements
ID hggncmnmeeffjiokniafocapnjcjcaoe
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/internet-achievements/hggncmnmeeffjiokniafocapnjcjcaoe
คำอธิบาย Internet Achievements adds a sense of accomplishment to your normal mundane Internet browsing.
ขนาดไฟล์ 466 KB
จำนวนการติดตั้ง 79
เวอร์ชันปัจจุบัน 1.0.3
อัปเดตครั้งล่าสุด 2017-01-23
วันที่เผยแพร่ 2017-01-23
คะแนน 5.00/5 รวมทั้งหมด 5 คะแนน
ผู้พัฒนา stefaluc000
อีเมล [email protected]
ประเภทการชำระเงิน free
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Internet Achievements",
    "description": "Internet Achievements adds a sense of accomplishment to your normal mundane Internet browsing.",
    "version": "1.0.3",
    "icons": {
        "16": "assets\/images\/icon16.png",
        "48": "assets\/images\/icon48.png",
        "128": "assets\/images\/icon128.png"
    },
    "browser_action": {
        "default_title": "Internet Achievements",
        "default_icon": "assets\/images\/logo.png"
    },
    "permissions": [
        "activeTab",
        "tabs",
        "http:\/\/*\/*",
        "https:\/\/*\/*",
        "storage",
        "notifications"
    ],
    "background": {
        "scripts": [
            "background.js",
            "assets\/js\/jquery-3.1.1.min.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "content_script.js"
            ]
        }
    ],
    "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'"
}