Gifnope

This extension allows you to stop annoying gifs in the current page

什麼是Gifnope?

Gifnope是由Claudio Cicali開發的Chrome擴展程式,該擴展的主要功能是“This extension allows you to stop annoying gifs in the current page”。

擴展截圖

screenshot

下載Gifnope擴展crx文件

下載Gifnope擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        Chrome extension which tries to pause the gifs that nag you. I found it useful when I am reading a document which contains some funny GIFs. By the way, authors: what about not using gifs inside a documents which is supposed to be read?

To pause the GIF(s) you can use one of these options:

- Use the contextual menu on a gif and select "Pause animation"
- Use the contextual menu anywhere in the page except on a gif a select "Pause all animations"
- Press the esc key and then click on the target GIF
- Press the esc key _twice_ to pause all GIFs in the document

Click on a paused gif to un-pause the animation.

The extension is open source and you can get it on Github (star it, if you like it!) https://github.com/claudioc/gifnope                    

擴展基本資訊

名稱 Gifnope Gifnope
ID pdfehigndohfngfifgopmikehakdhakm
官方網址 https://chromewebstore.google.com/detail/gifnope/pdfehigndohfngfifgopmikehakdhakm
簡介 This extension allows you to stop annoying gifs in the current page
檔案大小 20.25 KB
安裝次數 426
目前版本 1.0
更新時間 2015-04-26
上架時間 2015-04-26
評分 2.68/5 共 28 次評分
開發者 Claudio Cicali
電子郵箱 [email protected]
付費類型 free
擴展官網 https://github.com/claudioc/gifnope
支援的語言 en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Gifnope",
    "description": "This extension allows you to stop annoying gifs in the current page",
    "version": "1.0",
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "permissions": [
        "contextMenus"
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    }
}