Just Go Away
This extension quickly gets rid of webpage annoyances that cover content with a right-click.
Just Go Away क्या है?
Just Go Away trophygeek द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "This extension quickly gets rid of webpage annoyances that cover content with a right-click."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Just Go Away एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
Don't you hate it a webpage crowds out content with a huge floating menu or banner? Now you can make many of these annoyances go away with a right-click. - Update (1.0.5): fix a bug from a Chrome behavior change. After updating / installing extension, pages need to be reloaded before the extension works. If you find a site that doesn't work, please post it here: https://groups.google.com/forum/#!forum/just-go-away-extension
एक्सटेंशन की मूल जानकारी
नाम | |
ID | npgfhbcfcdgeeefdgphknhfncnjghdfk |
आधिकारिक URL | https://chrome.google.com/webstore/detail/just-go-away/npgfhbcfcdgeeefdgphknhfncnjghdfk |
विवरण | This extension quickly gets rid of webpage annoyances that cover content with a right-click. |
फ़ाइल का आकार | 466 KB |
स्थापना संख्या | 73 |
वर्तमान संस्करण | 1.0.5 |
अंतिम अपडेट | 2015-05-21 |
प्रकाशन तिथि | 2015-05-21 |
रेटिंग | 5.00/5 कुल 2 रेटिंग्स |
डेवलपर | trophygeek |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
सहायता पृष्ठ URL | https://groups.google.com/forum/#!forum/just-go-away-extension |
गोपनीयता नीति पृष्ठ URL | https://trophygeek.com/privacy |
समर्थित भाषाएँ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Just Go Away", "short_name": "justgoaway", "version": "1.0.5", "manifest_version": 2, "description": "This extension quickly gets rid of webpage annoyances that cover content with a right-click.", "homepage_url": "https:\/\/chrome.google.com\/webstore\/detail\/npgfhbcfcdgeeefdgphknhfncnjghdfk", "icons": { "16": "icons\/icon16.png", "48": "icons\/icon48.png", "128": "icons\/icon128.png" }, "default_locale": "en", "options_page": "src\/options\/index.html", "permissions": [ "tabs", "contextMenus", "http:\/\/*\/*", "https:\/\/*\/*" ], "background": { "scripts": [ "src\/bg\/background.js" ], "persistent": false }, "page_action": { "default_icon": "icons\/icon19.png", "default_title": "Stuff on page has been hidden. Click to reshow everything again.", "default_popup": "src\/page_action\/page_action.html" }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "all_frames": true, "js": [ "src\/inject\/inject.js" ] } ] } |