Anti-Procrastinator

Redirects time-sink websites to a custom URL. Stop reddit! (+ optionally replaces newtab)

Anti-Procrastinatorคืออะไร?

Anti-Procrastinator เป็นส่วนขยายของ Chrome ที่พัฒนาโดย david.k และคุณลักษณะหลักของมันคือ "Redirects time-sink websites to a custom URL. Stop reddit! (+ optionally replaces newtab)"

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

screenshot

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

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

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

                        [CURRENTLY BROKEN WITH NEW SITES, read below]
Google / Chrome has changed the way in which per-site permissions are requested (again). I'm currently in my final year of uni and can't spare the time to go in and fix it. Likely ETA for a fix: spring 2020. Sorry.



[from the github readme]

This is a tiny, lean Chrome plugin that can do two things:

- redirect sites of your choosing to an URL you set
- open said URL when you open a new tab.

You can also quickly toggle it by clicking the icon. I wrote it for myself because I needed something like this and what was out there was bloated and/or missed the New Tab replacement functionality. Made it less hacky so I can upload it to the Chrome Web Store and not have to download it from git and load unpacked on every PC I use. Feel free to use / make modifications.

The settings also sync dynamically between devices.

The only permission needed is 'notifications', to display the initial notification prompting the user to set the extension up. (and of course then the actual site URL permissions to intercept the WebRequests and redirect if needed.)


Source code here: https://github.com/dkambersky/redir                    

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

ชื่อ Anti-Procrastinator Anti-Procrastinator
ID emdhdddgpjjblpmemkaicibkhglajgke
URL อย่างเป็นทางการ https://chrome.google.com/webstore/detail/anti-procrastinator/emdhdddgpjjblpmemkaicibkhglajgke
คำอธิบาย Redirects time-sink websites to a custom URL. Stop reddit! (+ optionally replaces newtab)
ขนาดไฟล์ 44.33 KB
จำนวนการติดตั้ง 68
เวอร์ชันปัจจุบัน 1.3.37
อัปเดตครั้งล่าสุด 2019-12-01
วันที่เผยแพร่ 2019-12-01
คะแนน 2.50/5 รวมทั้งหมด 2 คะแนน
ผู้พัฒนา david.k
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/dkambersky/redir
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Anti-Procrastinator",
    "version": "1.3.37",
    "description": "Redirects time-sink websites to a custom URL. Stop reddit!\n (+ optionally replaces newtab)",
    "icons": {
        "128": "icons\/on.png"
    },
    "background": {
        "scripts": [
            "jquery.js",
            "bg-requests.js"
        ]
    },
    "permissions": [
        "webRequest",
        "webRequestBlocking",
        "storage",
        "notifications"
    ],
    "optional_permissions": [
        "*:\/\/*\/*"
    ],
    "chrome_url_overrides": {
        "newtab": "redirect.html"
    },
    "browser_action": {
        "default_icon": "icons\/on.png",
        "default_title": "Toggle Anti-Procrastinator"
    },
    "options_ui": {
        "page": "options.html",
        "chrome_style": true
    }
}